From ae43147725daf905ac25d2b8a5ce19bf0c1ce20d Mon Sep 17 00:00:00 2001 From: casjay Date: Wed, 12 Oct 2022 22:38:08 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=97=83=EF=B8=8F=20Committing=20everything?= =?UTF-8?q?=20that=20changed=20=F0=9F=97=83=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bin/entrypoint-deno.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/entrypoint-deno.sh b/bin/entrypoint-deno.sh index a4f0d05..282d40d 100755 --- a/bin/entrypoint-deno.sh +++ b/bin/entrypoint-deno.sh @@ -166,8 +166,8 @@ deno) elif [ -f "server.ts" ]; then RUN_SCRIPT="server.ts" fi - deno --allow-all task start || - deno run --watch --allow-all "${@:-}" + echo "Attempting to start deno" + deno --allow-all task start || deno run --watch --allow-all "${@:-}" || { echo "deno failed to start" && return 1; } exit ${exitCode:-$?} else __exec_command "$@"