From 6a9a5f7e2a8d46f4cf4d1c22aa24298da71ab1ed Mon Sep 17 00:00:00 2001 From: Asif Bacchus Date: Mon, 2 Aug 2021 03:24:08 -0600 Subject: [PATCH] fix(entrypoint): do not stop on errors while in watch mode --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index f530c27..c5a5d83 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -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 $?