From 9273babc6fb8a5eb0d60dc44e67480c7439fcb7b Mon Sep 17 00:00:00 2001 From: alan890104 Date: Wed, 13 Sep 2023 19:14:30 +0800 Subject: [PATCH] - chore(entrypoint.sh): update command in entrypoint.sh to include quotes around arguments --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 83b32bd..493f03d 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -1,3 +1,3 @@ #!/bin/bash -python3 /action.py --pattern $1 --suffix $2 \ No newline at end of file +python3 /action.py --pattern "$1" --suffix "$2" \ No newline at end of file