From 591635fa7030f8ef83a94e793528fc6b7c27babd Mon Sep 17 00:00:00 2001 From: Xevion Date: Sat, 9 Nov 2024 17:41:10 -0600 Subject: [PATCH] Fix literal arg for migrate --- backend/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/run.sh b/backend/run.sh index a2d2dea..ca8134f 100755 --- a/backend/run.sh +++ b/backend/run.sh @@ -10,7 +10,7 @@ fi export ENVIRONMENT=${ENVIRONMENT:-development} export LOG_JSON_FORMAT=${LOG_JSON_FORMAT:-false} export LOG_LEVEL=${LOG_LEVEL:-debug} -COMMAND='poetry run python3 -m linkpulse $@' +COMMAND="poetry run python3 -m linkpulse $@" # If arguments start with 'poetry run pytest' or 'pytest' use args as is if [[ "$1" == "poetry" && "$2" == "run" && "$3" == "pytest" ]]; then