summaryrefslogtreecommitdiff
path: root/tests/fate.sh
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2011-09-20 17:09:44 +0200
committerDiego Biurrun <diego@biurrun.de>2011-09-22 17:39:29 +0200
commit12ad0677b4a81152339e55e60464bc76b450e4db (patch)
tree656016ec2a7b8ec62a08d636a7e86ac4f66ccfaa /tests/fate.sh
parentbe64629a135642f20325e1422352707bb81d5c91 (diff)
fate.sh: Run git-pull in quiet mode to avoid console spam.
Since fate.sh can be run from cron, silent commands are preferrable.
Diffstat (limited to 'tests/fate.sh')
-rwxr-xr-xtests/fate.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fate.sh b/tests/fate.sh
index 9fd117c3bc..617a726d95 100755
--- a/tests/fate.sh
+++ b/tests/fate.sh
@@ -35,7 +35,7 @@ checkout(){
update()(
cd ${src} || return
case "$repo" in
- git:*) git pull ;;
+ git:*) git pull --quiet ;;
esac
)