From f74e44cdfad5ae57e436072499cc70714ceb216c Mon Sep 17 00:00:00 2001 From: James Ives Date: Sun, 10 Nov 2019 16:35:43 -0500 Subject: [PATCH] Quiet Mode --- src/git.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {