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
I want to use a Powershell command that has dollar signs in string arguments (to render Houdini things) inside a Rez environment. The issue is that it works in Powershell by using single quotes but not when launching the command in a Rez resolved env.
Expected behavior
It should print out.$F4.exr since single quotes escape the dollar sign in Powershell.
Actual behavior
It interprets $F4 as a variable and does the interpolation. (Note that it works when resolving the environment first and then launching the command)
How can I bypass this behavior?
The text was updated successfully, but these errors were encountered:
I want to use a Powershell command that has dollar signs in string arguments (to render Houdini things) inside a Rez environment. The issue is that it works in Powershell by using single quotes but not when launching the command in a Rez resolved env.
Environment
To Reproduce
rez env python --shell=powershell -- Write-Output 'out.$F4.exr'
Expected behavior
It should print
out.$F4.exr
since single quotes escape the dollar sign in Powershell.Actual behavior
It interprets
$F4
as a variable and does the interpolation. (Note that it works when resolving the environment first and then launching the command)How can I bypass this behavior?
The text was updated successfully, but these errors were encountered: