Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/nextcloud-config-converter.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2018-10-25 17:50:58 +0300
committerMorris Jobke <hey@morrisjobke.de>2018-10-25 17:50:58 +0300
commit6fe8f087be80c1c84d9cbe55752fa55ea9b83638 (patch)
treef3f543cfbc761bdf25c4049b66ea3f20cfb82ac0
parentae4aa068cd12e94808f612d800af8987f733b6db (diff)
Make it more verbose
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
-rwxr-xr-xupdateConfig.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/updateConfig.sh b/updateConfig.sh
index 51c9622..105fa6b 100755
--- a/updateConfig.sh
+++ b/updateConfig.sh
@@ -8,12 +8,12 @@ then
fi
# fetch documentation repo
-git clone -q git@github.com:nextcloud/documentation.git /tmp/nextcloud-documentation
+git clone git@github.com:nextcloud/documentation.git /tmp/nextcloud-documentation
cd /tmp/nextcloud-documentation
for branch in stable12 stable13 master
do
- git checkout -q $branch
+ git checkout $branch
cd $currentDir
# download current version of config.sample.php
@@ -28,7 +28,7 @@ do
if [ -n "$status" ]; then
echo "Push $branch"
- git commit -qam 'generate documentation from config.sample.php'
+ git commit -am 'generate documentation from config.sample.php'
git push
fi