From e577b72e415d7cbca9763ff1b61bd1fe1f66e707 Mon Sep 17 00:00:00 2001 From: James Ives Date: Sat, 6 Jun 2020 09:15:31 -0400 Subject: [PATCH] Update git.ts (#321) --- src/git.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/git.ts b/src/git.ts index 13e82876..fde9eee2 100644 --- a/src/git.ts +++ b/src/git.ts @@ -160,7 +160,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 --progress ${action.folder}/. ${ + `rsync -q -av --checksum --progress ${action.folder}/. ${ action.targetFolder ? `${temporaryDeploymentDirectory}/${action.targetFolder}` : temporaryDeploymentDirectory