fate: Be silent when fetching Git updates

This commit is contained in:
Diego Biurrun
2016-02-23 11:45:37 +01:00
parent 5e555f9300
commit 9328adcc80
+1 -1
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
)