diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-09-20 17:09:44 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-09-22 17:39:29 +0200 |
commit | 12ad0677b4a81152339e55e60464bc76b450e4db (patch) | |
tree | 656016ec2a7b8ec62a08d636a7e86ac4f66ccfaa /tests | |
parent | be64629a135642f20325e1422352707bb81d5c91 (diff) | |
download | ffmpeg-12ad0677b4a81152339e55e60464bc76b450e4db.tar.gz |
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')
-rwxr-xr-x | tests/fate.sh | 2 |
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 ) |