fate: Be silent when fetching Git updates

This commit is contained in:
Diego Biurrun 2016-02-20 18:34:20 +01:00
parent 5e555f9300
commit 9328adcc80
1 changed files with 1 additions and 1 deletions

View File

@ -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
)