🗃️ modified: bin/entrypoint-deno.sh 🗃️

This commit is contained in:
Jason
2022-07-10 19:38:22 -04:00
parent c89ce6b4a6
commit 929ffb49bc

View File

@@ -57,12 +57,12 @@ case "$1" in
healthcheck)
echo 'OK'
;;
bash | shell | sh)
sh | bash | shell | /bin/sh | /bin/bash)
shift 1
__exec_bash "$@"
;;
*)
exec deno run --allow-net "${@:-https://deno.land/std/examples/welcome.ts}"
deno run --allow-net "${@:-/data/sample.ts}"
;;
esac
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -