diff options
author | Alex Riesen <raa.lkml@gmail.com> | 2007-04-13 22:13:10 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-04-16 16:52:55 -0700 |
commit | 238128d88885b5d0f5a3e28d392362a9b267a03f (patch) | |
tree | 82e31f5e38269f9ab75a2979fc1db656f07d4eff /t/t4201-shortlog.sh | |
parent | 3d711d97a0db41633a5137e47358cf503b91b074 (diff) | |
download | git-238128d88885b5d0f5a3e28d392362a9b267a03f.tar.gz |
Fix t4201: accidental arithmetic expansion
instead of embedded subshell. It actually breaks here (dash as /bin/sh):
t4201-shortlog.sh: 27: Syntax error: Missing '))'
FATAL: Unexpected exit with code 2
Signed-off-by: Alex Riesen <raa.lkml@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 't/t4201-shortlog.sh')
-rw-r--r-- | t/t4201-shortlog.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t4201-shortlog.sh b/t/t4201-shortlog.sh index 321429c8fa..c27e39cb6f 100644 --- a/t/t4201-shortlog.sh +++ b/t/t4201-shortlog.sh @@ -11,7 +11,7 @@ test_description='git-shortlog echo 1 > a1 git add a1 tree=$(git write-tree) -commit=$((echo "Test"; echo) | git commit-tree $tree) +commit=$( (echo "Test"; echo) | git commit-tree $tree ) git update-ref HEAD $commit echo 2 > a1 |