[CORE] Add variable merge in `local.conf`
Added a function that unifies multiple assignments of a single variable
into a single assignment. For example:
```
VAR = "test"
VAR += "second-test
```
ends up with:
```
VAR += " \
test \
second-test \
"
```
Signed-off-by:
Nicola Sparnacci <nicola.sparnacci@seco.com>
Showing
- src/seco_setup_conf.py 75 additions, 0 deletionssrc/seco_setup_conf.py
- src/seco_setup_environment.py 4 additions, 0 deletionssrc/seco_setup_environment.py
- tests/test_seco_setup_conf.py 117 additions, 1 deletiontests/test_seco_setup_conf.py
- tests/test_seco_setup_environment.py 8 additions, 5 deletionstests/test_seco_setup_environment.py
Loading
-
mentioned in commit clea-os/seco-base@db09ca21
-
mentioned in merge request clea-os/seco-base!214 (closed)
-
mentioned in commit clea-os/seco-base@dff05823
-
mentioned in merge request clea-os/seco-base!215 (closed)
Please register or sign in to comment