You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Environment variable expansion is also supported when passed to rex functions. The syntaxes $FOO and ${FOO} are supported, regardless of the syntax supported by the target shell.
However in my testing the environment variables do not get expanded on windows in CMD.
Only the "Python" interpreter does expand_env_vars = True, while in bash the system takes over and does the expanion.
Since on windows ${} is not supported I suggest that expand_env_vars should be set True in the CMD shell.
Is there a risk doing this?
The text was updated successfully, but these errors were encountered:
To quote the wiki:
However in my testing the environment variables do not get expanded on windows in CMD.
Only the "Python" interpreter does
expand_env_vars = True
, while in bash the system takes over and does the expanion.Since on windows ${} is not supported I suggest that
expand_env_vars
should be setTrue
in the CMD shell.Is there a risk doing this?
The text was updated successfully, but these errors were encountered: