From c0170dd15774d37719d23621eaa1d4da06e578c9 Mon Sep 17 00:00:00 2001 From: Burnett01 Date: Mon, 1 Sep 2025 13:35:26 +0000 Subject: [PATCH] fix: correct variable name for INPUT_SWITCHES in rsync command execution --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 7e54b5b..d2828a8 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. -sh -c "rsync $SWITCHES -e '$RSH' $LOCAL_PATH $DSN:$INPUT_REMOTE_PATH" +sh -c "rsync $INPUT_SWITCHES -e '$RSH' $LOCAL_PATH $DSN:$INPUT_REMOTE_PATH" # Clean up. source agent-stop "$GITHUB_ACTION"