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
gcr.io/cloud-builders-community/envsubst
When passing -s multiple times, only the last one is applied.
-s
Accumulate the env vars to substitute and apply the substitution for them all.
mkdir /tmp/test123 && cd /tmp/test123 wget 'https://github.com/GoogleCloudPlatform/cloud-builders-community/raw/master/envsubst/entrypoint.bash' echo '$A $B $C' > to_sub export A=Hello export B=World export C=":)" bash entrypoint.bash -s '$A' -s '$B' -s '$C' to_sub cat to_sub
output: $A $B :)
$A $B :)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Affected builder image
gcr.io/cloud-builders-community/envsubst
Expected Behavior
When passing
-s
multiple times, only the last one is applied.Actual Behavior
Accumulate the env vars to substitute and apply the substitution for them all.
Steps to Reproduce the Problem
output:
$A $B :)
Additional Info
The text was updated successfully, but these errors were encountered: