From 1edc2a7de12c66b00e05bcb267a20c4e7d1b5d99 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?David=20Hrb=C3=A1=C4=8D?= <david@hrbac.cz>
Date: Tue, 17 Jan 2017 16:02:12 +0100
Subject: [PATCH] Silent rsync

---
 .gitlab-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b4b30042a..e0dd4912c 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -51,7 +51,7 @@ deploy to stage:
   - useradd -lM nginx
   script:
   - chown nginx:nginx site -R
-  - rsync -av --delete site/ root@"$SSH_HOST_STAGE":/srv/docs.it4i.cz/devel/$CI_BUILD_REF_NAME/
+  - rsync -a --delete site/ root@"$SSH_HOST_STAGE":/srv/docs.it4i.cz/devel/$CI_BUILD_REF_NAME/
 
 deploy to production:
   environment: production
@@ -72,7 +72,7 @@ deploy to production:
   - useradd -lM nginx
   script:
   - chown nginx:nginx site -R
-  - rsync -av --delete site/ root@"$SSH_HOST_STAGE":/srv/docs.it4i.cz/site/
+  - rsync -a --delete site/ root@"$SSH_HOST_STAGE":/srv/docs.it4i.cz/site/
   only:
   - master
   when: manual
-- 
GitLab