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
Avoid mangling paths given to ExecuteScriptWithArgsAsync
Some extant code was using PowerShell to get the current working
directory and then was hardcoded to prepend that to the given path, in
order to make an "absolute path." This was buggy, but also seemed
unnecessary as the current working directory should be fine, and so
hopefully relative paths work without this code. Absolute paths already
work without it because of the `File.Exists` logic; the potential bug is
if that operates in a different working directory than PowerShell.
0 commit comments