From b50cd6b1b3d20866290d192e05c623f90695504f Mon Sep 17 00:00:00 2001 From: dsc Date: Thu, 29 Mar 2012 14:12:11 -0700 Subject: [PATCH] Eliminates silly printf warning. --- deploy.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/deploy.sh b/deploy.sh index 2251b1d..908e0bb 100755 --- a/deploy.sh +++ b/deploy.sh @@ -69,7 +69,7 @@ log "ok!" # Finally, deploy the files log "Deploying files..." -rsync -Caz $([ "$VERBOSE" ] && printf '-v') --progress tmp/dist $DEPLOY_HOST:$DEPLOY_PATH +rsync -Caz $([ "$VERBOSE" ] && echo '-v') --progress tmp/dist $DEPLOY_HOST:$DEPLOY_PATH log "ok!" log "Done!" -- 1.7.0.4