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
Device and OS: Windows App version: v0.54.0 Kubernetes distro being used: k3s Other:
echo ${ZARF_VAR_ENV1} ${ZARF_VAR_ENV2} ${ZARF_CONST_ENV3}
Command is mutated to: echo $Env:ZARF_VAR_ENV1 $Env:ZARF_VAR_ENV2 $Env:ZARF_CONST_ENV3
echo $Env:ZARF_VAR_ENV1 $Env:ZARF_VAR_ENV2 $Env:ZARF_CONST_ENV3
Command is mutated to: echo $Env:ZARF_VAR_ENV1 ${ZARF_VAR_ENV2} ${ZARF_CONST_ENV3}
echo $Env:ZARF_VAR_ENV1 ${ZARF_VAR_ENV2} ${ZARF_CONST_ENV3}
So only the first variable is replaced, AND only variables, not the constants (ZARF_CONST_)
ZARF_CONST_
N/A
medium
Add any other context or screenshots about the technical debt here.
The text was updated successfully, but these errors were encountered:
actionCmdMutation
Thanks for the issue (and PR) @koendelaat - we'll monitor the PR and provide any required feedback.
Sorry, something went wrong.
koendelaat
Successfully merging a pull request may close this issue.
Environment
Device and OS: Windows
App version: v0.54.0
Kubernetes distro being used: k3s
Other:
Steps to reproduce
echo ${ZARF_VAR_ENV1} ${ZARF_VAR_ENV2} ${ZARF_CONST_ENV3}
)Expected result
Command is mutated to:
echo $Env:ZARF_VAR_ENV1 $Env:ZARF_VAR_ENV2 $Env:ZARF_CONST_ENV3
Actual Result
Command is mutated to:
echo $Env:ZARF_VAR_ENV1 ${ZARF_VAR_ENV2} ${ZARF_CONST_ENV3}
So only the first variable is replaced, AND only variables, not the constants (
ZARF_CONST_
)Visual Proof (screenshots, videos, text, etc)
N/A
Severity/Priority
medium
Additional Context
Add any other context or screenshots about the technical debt here.
The text was updated successfully, but these errors were encountered: