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

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-09-10 10:26:27 +0400
committerDiego Biurrun <diego@biurrun.de>2013-09-10 14:38:41 +0400
commitc58f4069e1d5b5804c669b691510e1b8fabb67fc (patch)
tree0612781bdcbfdab5af7dda325c17ed6098944ab3 /tests
parentf369b9356c4606cd4d713d60f7db5de119d901fa (diff)
fate.sh: Run git-clone quietly
Diffstat (limited to 'tests')
-rwxr-xr-xtests/fate.sh2
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
}