diff --git a/src/git.ts b/src/git.ts index dda23638..f024e976 100644 --- a/src/git.ts +++ b/src/git.ts @@ -89,7 +89,7 @@ export async function deploy(): Promise { if (action.build === root) { // rsync is executed here so the .git and temporary deployment directories don't get duplicated. await execute( - `rsync -av --progress ${action.build}/. ${temporaryDeploymentDirectory} --exclude .git --exclude ${temporaryDeploymentDirectory}`, + `rsync -q -av --progress ${action.build}/. ${temporaryDeploymentDirectory} --exclude .git --exclude ${temporaryDeploymentDirectory}`, workspace ); } else {