diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-09-10 08:26:27 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-09-10 12:38:41 +0200 |
commit | c58f4069e1d5b5804c669b691510e1b8fabb67fc (patch) | |
tree | 0612781bdcbfdab5af7dda325c17ed6098944ab3 /tests | |
parent | f369b9356c4606cd4d713d60f7db5de119d901fa (diff) | |
download | ffmpeg-c58f4069e1d5b5804c669b691510e1b8fabb67fc.tar.gz |
fate.sh: Run git-clone quietly
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 de59c22e26..7505181ca5 100755 --- a/tests/fate.sh +++ b/tests/fate.sh @@ -28,7 +28,7 @@ lock(){ checkout(){ case "$repo" in file:*|/*) src="${repo#file:}" ;; - git:*) git clone "$repo" "$src" ;; + git:*) git clone --quiet "$repo" "$src" ;; esac } |