From 7bf29be33880101b2477a4a0dacc6ab1537c44ca Mon Sep 17 00:00:00 2001 From: Burnett01 Date: Mon, 1 Sep 2025 13:32:06 +0000 Subject: [PATCH] fix: remove unnecessary quotes around INPUT_SWITCHES in rsync command --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 2d9bccb..868db4f 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -30,7 +30,7 @@ LOCAL_PATH="$GITHUB_WORKSPACE/$INPUT_PATH" DSN="$INPUT_REMOTE_USER@$INPUT_REMOTE_HOST" # Deploy. -exec rsync "$INPUT_SWITCHES" -e "'$RSH'" "$LOCAL_PATH" "$DSN:$INPUT_REMOTE_PATH" +exec rsync $INPUT_SWITCHES -e "'$RSH'" "$LOCAL_PATH" "$DSN:$INPUT_REMOTE_PATH" # Clean up. source agent-stop "$GITHUB_ACTION"