fate.sh: Run git-pull in quiet mode to avoid console spam.

Since fate.sh can be run from cron, silent commands are preferrable.
This commit is contained in:
Diego Biurrun 2011-09-20 17:09:44 +02:00
parent be64629a13
commit 12ad0677b4
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ checkout(){
update()(
cd ${src} || return
case "$repo" in
git:*) git pull ;;
git:*) git pull --quiet ;;
esac
)