1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

fate: Be silent when switching to Git branch

This commit is contained in:
Diego Biurrun
2016-02-19 22:05:07 +01:00
parent 8d918a98aa
commit 8caadfc53d

View File

@@ -37,7 +37,7 @@ checkout(){
update()( update()(
cd ${src} || return cd ${src} || return
case "$repo" in case "$repo" in
git:*) git fetch --force; git reset --hard "origin/$branch" ;; git:*) git fetch --force; git reset --quiet --hard "origin/$branch" ;;
esac esac
) )