Skip to content

Commit

Permalink
fix issue with rb/g2isrebasing
Browse files Browse the repository at this point in the history
  • Loading branch information
Olivier Refalo committed Jun 5, 2012
1 parent a9e7445 commit e863f67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmds/g2-g2isrebasing.sh
Expand Up @@ -3,4 +3,4 @@
GDIR=$("$GIT_EXE" rev-parse --git-dir 2> /dev/null)

[[ ! $GDIR ]] && echo "fatal: Not a Git Repository" && exit 1
[[ -d "$GDIR/rebase-merge" -o -d "$GDIR/rebase-apply" ]] && echo "true" || echo "false"
[[ -d "$GDIR/rebase-merge" || -d "$GDIR/rebase-apply" ]] && echo "true" || echo "false"

0 comments on commit e863f67

Please sign in to comment.