Simplified example:
Account variable
A=hello
Deployment variable
B=$A
Expected result: hello
Actual result: $A
What am I doing wrong?
Variants I tried:
B=`$A`
B='$A'
B="$A"
B=${A}
And combinations of these - all with the same outcome.
doesn't seem possible at the moment. I gave up.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.