diff options
author | David Kågedal <davidk@lysator.liu.se> | 2007-01-18 12:15:13 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-01-18 14:22:24 -0800 |
commit | a5cd09f993c0dd96f0c70fd1266f7c58b4f52446 (patch) | |
tree | 172858c3f02526dd55fc963596342a784537714d /git-reset.sh | |
parent | Use standard -t option for touch. (diff) | |
download | tgif-a5cd09f993c0dd96f0c70fd1266f7c58b4f52446.tar.xz |
Shell syntax fix in git-reset
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-reset.sh')
-rwxr-xr-x | git-reset.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-reset.sh b/git-reset.sh index bf2a0581fe..fee6d98d9c 100755 --- a/git-reset.sh +++ b/git-reset.sh @@ -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 -- "$@" | |