diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-09-11 12:31:43 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-09-11 12:31:51 +0200 |
commit | 24da9eb25d63b80102934aab71efcf5ace2ede03 (patch) | |
tree | b2ce6a06bc4e363a6c520bf52a05159fd19541d5 /tests/fate.sh | |
parent | 8c9d6ee4f2ad84114cf65944d91157069825423e (diff) | |
parent | c58f4069e1d5b5804c669b691510e1b8fabb67fc (diff) | |
download | ffmpeg-24da9eb25d63b80102934aab71efcf5ace2ede03.tar.gz |
Merge commit 'c58f4069e1d5b5804c669b691510e1b8fabb67fc'
* commit 'c58f4069e1d5b5804c669b691510e1b8fabb67fc':
fate.sh: Run git-clone quietly
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'tests/fate.sh')
-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 17577141ec..c474be7139 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 } |