-
Notifications
You must be signed in to change notification settings - Fork 0
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
windows invocation #1
Comments
On a related note, even if you resolve the above, you can't really assume much about the way tq behaves. You have to check stderr and stdout for errors from the wrapper code. |
HI @majidaldo! I don't have access to a Windows computer to reproduce this, so it would be great to have some help in fixing this implementation. Do you have any cycles over the next couple weeks? |
ya when we get into october :)
|
Hi Gabe.
I found an issue with the way tq is invoked on Windows.
env.update(os.environ)
.In any case, you don't really need the windows and bash scripts as they are just setting env vars. You can have that logic in python and pass it through the
env
arg ofsubprocess.run
. Also, instead of a script (string) you can just make anargs
sequence (or just the command as a string). This way you don't have to deal with the difference.The text was updated successfully, but these errors were encountered: