[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>
parent
819b8f0a
No related branches found
No related tags found
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 6 additions, 2 deletionstests/test_seco_setup_environment.py
-
mentioned in commit clea-os/seco-base@c9df05fd
-
mentioned in merge request clea-os/seco-base!217 (merged)
-
mentioned in commit a28e2d64
-
mentioned in commit clea-os/seco-base@2cfc7ac0
-
mentioned in commit clea-os/seco-manifest@dcfa8bd1
-
mentioned in commit clea-os/seco-manifest@ef13d05c
-
mentioned in commit clea-os/seco-manifest@834896b8
-
mentioned in commit clea-os/seco-manifest@9568acd2
-
mentioned in commit clea-os/seco-manifest@598eb286
-
mentioned in commit clea-os/seco-manifest@002c1758
-
mentioned in commit clea-os/seco-manifest@d3e85646
-
mentioned in commit clea-os/seco-manifest@d2b93b9a
-
mentioned in commit clea-os/seco-manifest@ff6afe53
-
mentioned in merge request clea-os/seco-manifest!781 (merged)
Please register or sign in to comment