Skip to content
Snippets Groups Projects
Commit e05c6700 authored by Nicola Sparnacci's avatar Nicola Sparnacci
Browse files

[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: default avatarNicola Sparnacci <nicola.sparnacci@seco.com>
parent 8988bb97
No related branches found
No related tags found
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment