fate.sh: Allow non-fast-forwards when updating sources

This commit is contained in:
Diego Biurrun 2013-10-25 15:21:44 +02:00
parent c872d310cd
commit 9510d7689e
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 --quiet ;;
git:*) git fetch --force; git reset --hard origin/master ;;
esac
)