Skip to content

Commit

Permalink
build_multilib_wine: fix function: git_pull()
Browse files Browse the repository at this point in the history
 * use: git pull --force
  • Loading branch information
bobwya committed Jul 10, 2020
1 parent 1a3e284 commit 1f5760c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/build_multilib_wine
Original file line number Diff line number Diff line change
Expand Up @@ -1110,7 +1110,7 @@ function git_pull()
git checkout "master" || die "git checkout \"master\" failed (\"${1}\")" $?
git clean -xdfq || die "git clean -xdfq failed (\"${1}\")" $?
git reset --hard "origin/master" || die "git reset --hard \"master\" failed (\"${1}\")" $?
git pull || die "git pull failed (\"${1}\")" $?
git pull --force || die "git pull --force failed (\"${1}\")" $?
popd_wrapper
}

Expand Down

0 comments on commit 1f5760c

Please sign in to comment.