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
Hello, I'm trying to execute sass in a very simple script in Debian 10. The script is as the follow:
#! /bin/sh -e sass --watch $scssPath:$cssPath > ./sass_watch2.log 2>&1 &
$scssPath and $cssPath are the paths of the files sccs and css. I save stdin and stderr in a file (ass_watch2.log).
This script executes sass in background but with this way it stops working (the process dies ).
However, if I execute it in foreground (without the last &), it works correctly.
I'm using version 1.50.0. When I used version 1.39.1, it works good.
Any idea?
Thanks.
The text was updated successfully, but these errors were encountered:
#1665 should fix this.
Sorry, something went wrong.
No branches or pull requests
Hello,
I'm trying to execute sass in a very simple script in Debian 10. The script is as the follow:
#! /bin/sh -e
sass --watch $scssPath:$cssPath > ./sass_watch2.log 2>&1 &
$scssPath and $cssPath are the paths of the files sccs and css. I save stdin and stderr in a file (ass_watch2.log).
This script executes sass in background but with this way it stops working (the process dies
).
However, if I execute it in foreground (without the last &), it works correctly.
I'm using version 1.50.0. When I used version 1.39.1, it works good.
Any idea?
Thanks.
The text was updated successfully, but these errors were encountered: