diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-10-22 11:59:30 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-10-22 11:59:30 -0700 |
commit | 4c1360f472ca5706a3dd1eed0b88603cb05d0827 (patch) | |
tree | 4b3ff38e732ca6e28930e628e4220b67d419897e /git-rebase--interactive.sh | |
parent | e249044c67d347dcffff247c72a503a9dd592294 (diff) | |
download | git-4c1360f472ca5706a3dd1eed0b88603cb05d0827.tar.gz |
git-rebase--interactive.sh: comparision with == is bashism
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-rebase--interactive.sh')
-rwxr-xr-x | git-rebase--interactive.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-rebase--interactive.sh b/git-rebase--interactive.sh index a563dea9b5..0cae3be6f6 100755 --- a/git-rebase--interactive.sh +++ b/git-rebase--interactive.sh @@ -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 |