Code

Shell syntax fix in git-reset
authorDavid Kågedal <davidk@lysator.liu.se>
Thu, 18 Jan 2007 11:15:13 +0000 (12:15 +0100)
committerJunio C Hamano <junkio@cox.net>
Thu, 18 Jan 2007 22:22:24 +0000 (14:22 -0800)
Signed-off-by: Junio C Hamano <junkio@cox.net>
git-reset.sh

index bf2a0581fe0b0dd2c393dce6f31c8e9ad9f352c9..fee6d98d9cba708828c36a2d2a29dbec8662c36b 100755 (executable)
@@ -43,7 +43,7 @@ case "$1" in --) shift ;; esac
 # affecting the working tree nor HEAD.
 if test $# != 0
 then
-       test "$reset_type" == "--mixed" ||
+       test "$reset_type" = "--mixed" ||
                die "Cannot do partial $reset_type reset."
 
        git-diff-index --cached $rev -- "$@" |