-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
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
Error converting 2nd parameter of run command #262
Comments
|
Run second param does not accept double quotes, so it makes it hard to know if it's a variable or path, could do a check to see if path |
This seems to be converted correctly actually, Run, % ComSpec " /k echo A" ; WorkingDir
Run, % ComSpec " /k echo B", A_Temp ; WorkingDir
Run, % ComSpec " /k echo C", %A_Temp% ; Temp
Run, % ComSpec " /k echo D", % A_Temp ; Temp I think your example works because |
V1:
V2 (Converted):
V2 (Expected):
The text was updated successfully, but these errors were encountered: