We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Even seems to save it correctly, I'm having issues accessing later to the variable stored, some characters are missing when I retrieve it.
Let's say I want to save Rick'"$@Morty
Rick'"$@Morty
I execute: envman add --key MY_TEST_ENV_KEY --value 'Rick'\''"$@Morty'
envman add --key MY_TEST_ENV_KEY --value 'Rick'\''"$@Morty'
Doing envman print I get correctly: MY_TEST_ENV_KEY: Rick'"$@Morty
MY_TEST_ENV_KEY: Rick'"$@Morty
While doing: envman run bash -c 'echo "$MY_TEST_ENV_KEY"'
envman run bash -c 'echo "$MY_TEST_ENV_KEY"'
I do get: Rick'"Morty
Rick'"Morty
So $ and @ got missing.
What I'm doing wrong?
The text was updated successfully, but these errors were encountered:
I ended writing and reading a file by myself.
Sorry, something went wrong.
No branches or pull requests
Even seems to save it correctly, I'm having issues accessing later to the variable stored, some characters are missing when I retrieve it.
Let's say I want to save
Rick'"$@Morty
I execute:
envman add --key MY_TEST_ENV_KEY --value 'Rick'\''"$@Morty'
Doing envman print I get correctly:
MY_TEST_ENV_KEY: Rick'"$@Morty
While doing:
envman run bash -c 'echo "$MY_TEST_ENV_KEY"'
I do get:
Rick'"Morty
So $ and @ got missing.
What I'm doing wrong?
The text was updated successfully, but these errors were encountered: