Browse Source

Fix a bug in mfup

pull/1/head
Scott Lahteine 8 years ago
committed by GitHub
parent
commit
28deff01b8
  1. 2
      buildroot/share/git/mfup

2
buildroot/share/git/mfup

@ -28,7 +28,7 @@ echo "Fetching upstream ($ORG/$REPO)..."
git fetch upstream git fetch upstream
echo ; echo "Bringing $TARG up to date..." echo ; echo "Bringing $TARG up to date..."
if [[ git checkout -q $TARG ]]; then if [[ ! $(git checkout -q $TARG) ]]; then
git reset --hard upstream/$TARG git reset --hard upstream/$TARG
git push -f origin git push -f origin
else else

Loading…
Cancel
Save