🗃️ Committing everything that changed 🗃️

This commit is contained in:
casjay 2022-10-12 22:38:08 -04:00
parent 6bef97deeb
commit ae43147725
No known key found for this signature in database
GPG Key ID: 4F765975C1F0EE5F

View File

@ -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 "$@"