aboutsummaryrefslogtreecommitdiff
path: root/git-rebase--interactive.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2008-10-22 11:59:30 -0700
committerJunio C Hamano <gitster@pobox.com>2008-10-22 11:59:30 -0700
commit4c1360f472ca5706a3dd1eed0b88603cb05d0827 (patch)
tree4b3ff38e732ca6e28930e628e4220b67d419897e /git-rebase--interactive.sh
parente249044c67d347dcffff247c72a503a9dd592294 (diff)
downloadgit-4c1360f472ca5706a3dd1eed0b88603cb05d0827.tar.gz
git-4c1360f472ca5706a3dd1eed0b88603cb05d0827.tar.xz
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-xgit-rebase--interactive.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-rebase--interactive.sh b/git-rebase--interactive.sh
index a563dea9b..0cae3be6f 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