We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I found that some applications cannot be launched from a shortcut. I believe the reason is that the app wants pty or stdin or something like that.
In manage.py in run() and runs() functions the target command is run using nohup, this prevents such apps from starting.
From CMD, this doesn't work:
wsl.exe ~ -d RMB64 . ~/.profile;nohup /bin/sh -c rmb & This works: wsl.exe ~ -d RMB64 . ~/.profile; /bin/sh -c rmb &
Best solution would probably be to make the use of nohup a configurable option.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I found that some applications cannot be launched from a shortcut. I believe the reason is that the app wants pty or stdin or something like that.
In manage.py in run() and runs() functions the target command is run using nohup, this prevents such apps from starting.
From CMD, this doesn't work:
Best solution would probably be to make the use of nohup a configurable option.
The text was updated successfully, but these errors were encountered: