Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

brix11: fix incorrect variable splitting #152

Merged
merged 1 commit into from
Aug 31, 2023

Conversation

jwillemsen
Copy link
Member

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.

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 RemedyIT#122.
@jwillemsen jwillemsen merged commit 075cd6a into RemedyIT:master Aug 31, 2023
9 of 11 checks passed
@jwillemsen
Copy link
Member Author

Thanks for the report and the fix!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

brix11: incorrect variable splitting
2 participants