fix(entrypoint): do not stop on errors while in watch mode

This commit is contained in:
Asif Bacchus 2021-08-02 03:24:08 -06:00
parent 952439a58d
commit 6a9a5f7e2a
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ elif [ "$1" = "oneshot" ]; then
elif [ -n "$1" ]; then
exec "$@"
else
exec /opt/dart-sass/sass -s "$SASS_STYLE" --watch --poll --stop-on-error /sass:/css
exec /opt/dart-sass/sass -s "$SASS_STYLE" --watch --poll /sass:/css
fi
exit $?