Merge pull request #2 from jawshooah/patch-1

Ensure update is a fast-forward merge
This commit is contained in:
Yamashita, Yuu
2015-07-01 01:01:09 +09:00

View File

@@ -43,7 +43,7 @@ verify_repo() {
update_repo() {
info "Updating $1..."
verify_repo "$1" &&
( cd "${repo}" && git pull "${REMOTE}" "${BRANCH}" )
( cd "${repo}" && git pull --no-rebase --ff "${REMOTE}" "${BRANCH}" )
}
info() {