From 2ce15a53c68c4874e07bf100f9b0b1ddbc92f847 Mon Sep 17 00:00:00 2001 From: casjay Date: Wed, 12 Oct 2022 22:44:30 -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 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/entrypoint-deno.sh b/bin/entrypoint-deno.sh index 282d40d..fc3f023 100755 --- a/bin/entrypoint-deno.sh +++ b/bin/entrypoint-deno.sh @@ -122,7 +122,7 @@ fi mkdir -p "/data/htdocs/www" && cd "/data/htdocs/www" || exit 10 if [ -z "$1" ] && [ -z "$(ls -A "/data/htdocs/www"/* 2>/dev/null)" ]; then cp -Rf "/usr/local/share/template-files/data/htdocs/www/." "/data/htdocs/www/" - RUN_SCRIPT="src/index.ts" + START_SCRIPT="src/index.ts" fi # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # Additional commands @@ -155,8 +155,8 @@ deno) *) # Execute primary command if [ $# -eq 0 ]; then - if [ -n "$RUN_SCRIPT" ]; then - START_SCRIPT="$RUN_SCRIPT" + if [ -n "$START_SCRIPT" ]; then + RUN_SCRIPT="$START_SCRIPT" elif [ -f "src/index.ts" ]; then RUN_SCRIPT="index.ts" elif [ -f "index.ts" ]; then @@ -167,7 +167,7 @@ deno) RUN_SCRIPT="server.ts" fi echo "Attempting to start deno" - deno --allow-all task start || deno run --watch --allow-all "${@:-}" || { echo "deno failed to start" && return 1; } + deno task start || deno run --watch --allow-all ${@:-$RUN_SCRIPT} || { echo "deno failed to start" && return 1; } exit ${exitCode:-$?} else __exec_command "$@"