Skip to content

Commit

Permalink
git-rebase--interactive.sh: comparision with == is bashism
Browse files Browse the repository at this point in the history
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Junio C Hamano committed Oct 22, 2008
1 parent e249044 commit 4c1360f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion git-rebase--interactive.sh
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ pick_one_preserving_merges () {

if test -f "$DOTEST"/current-commit
then
if [ "$fast_forward" == "t" ]
if test "$fast_forward" = t
then
cat "$DOTEST"/current-commit | while read current_commit
do
Expand Down

0 comments on commit 4c1360f

Please sign in to comment.