From c12b755e602781a272179c9bdc68cfb165817b95 Mon Sep 17 00:00:00 2001 From: James Ives Date: Thu, 28 Nov 2024 08:08:13 -0500 Subject: [PATCH] fix: temporarily remove mkpath option --- src/git.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/git.ts b/src/git.ts index 21b7cad23..4bf30038f 100644 --- a/src/git.ts +++ b/src/git.ts @@ -166,7 +166,7 @@ export async function deploy(action: ActionInterface): Promise { Allows the user to specify the root if '.' is provided. rsync is used to prevent file duplication. */ await execute( - `rsync -q -av --checksum --progress --mkpath ${action.folderPath}/. ${ + `rsync -q -av --checksum --progress ${action.folderPath}/. ${ action.targetFolder ? `${temporaryDeploymentDirectory}/${action.targetFolder}` : temporaryDeploymentDirectory