diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-02-20 18:34:20 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-02-23 11:45:37 +0100 |
commit | 9328adcc8012a1b0e00c465c85b5453589a4f5f7 (patch) | |
tree | 4531ee9cd642ee138e73b23c87139f602f31de08 /tests | |
parent | 5e555f93009f0605db120eec78262d0fe337e645 (diff) | |
download | ffmpeg-9328adcc8012a1b0e00c465c85b5453589a4f5f7.tar.gz |
fate: Be silent when fetching Git updates
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 8adbd8c139..a1929811fa 100755 --- a/tests/fate.sh +++ b/tests/fate.sh @@ -37,7 +37,7 @@ checkout(){ update()( cd ${src} || return case "$repo" in - git:*) git fetch --force; git reset --quiet --hard "origin/$branch" ;; + git:*) git fetch --quiet --force; git reset --quiet --hard "origin/$branch" ;; esac ) |