1 Commits

Author SHA1 Message Date
asif 6a9a5f7e2a fix(entrypoint): do not stop on errors while in watch mode 2021-08-02 03:24:08 -06:00
+1 -1
View File
@@ -11,7 +11,7 @@ elif [ "$1" = "oneshot" ]; then
elif [ -n "$1" ]; then elif [ -n "$1" ]; then
exec "$@" exec "$@"
else 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 fi
exit $? exit $?