RemedyIT / axcioma

AXCIOMA, the component framework for distributed, real-time, and embedded systems
https://www.axcioma.org
MIT License
16 stars 11 forks source link

brix11: fix incorrect variable splitting #152

Closed jwillemsen closed 1 year ago

jwillemsen commented 1 year ago

Variable values containing an equal sign can't be used with the -D option due to incorrect splitting:

$ bin/brix11 -D A=B=C environment
export A=B

Output after applying the fix:

$ bin/brix11 -D A=B=C environment
export A=B=C

This fixes #122.

jwillemsen commented 1 year ago

Thanks for the report and the fix!