Skip to content
Snippets Groups Projects
Commit 28deff01 authored by Scott Lahteine's avatar Scott Lahteine Committed by GitHub
Browse files

Fix a bug in mfup

parent cca1cca3
Branches
Tags
No related merge requests found
......@@ -28,7 +28,7 @@ echo "Fetching upstream ($ORG/$REPO)..."
git fetch upstream
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 push -f origin
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment