ab-dart-sass/entrypoint.sh

20 lines
342 B
Bash
Raw Normal View History

#!/bin/sh
#
# ab-dart-sass entrypoint script
#
if [ "$1" = "shell" ]; then
exec /bin/bash
elif [ "$1" = "oneshot" ]; then
exec /opt/dart-sass/sass -s "$SASS_STYLE" --update --stop-on-error /sass:/css
elif [ -n "$1" ]; then
exec "$@"
else
exec /opt/dart-sass/sass -s "$SASS_STYLE" --watch --poll /sass:/css
fi
exit $?
#EOF