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
Currently, when an .install-script that isn't executable is to be executed, the application fails with a cryptic:
[Errno 13]: Permission denied
(which is what subprocess.Popen throws here, when it can't run a script) That's a terrible error message to debug.
Instead I'd suggest to handle it either by a) attempting to chmod +x it manually or by b) exiting with a message that explains what script caused the error.
The text was updated successfully, but these errors were encountered:
Currently, when an .install-script that isn't executable is to be executed, the application fails with a cryptic:
(which is what
subprocess.Popen
throws here, when it can't run a script) That's a terrible error message to debug.Instead I'd suggest to handle it either by a) attempting to
chmod +x
it manually or by b) exiting with a message that explains what script caused the error.The text was updated successfully, but these errors were encountered: