summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 6f01e6b)
raw | patch | inline | side by side (parent: 6f01e6b)
author | Francis Daly <francis@daoine.org> | |
Thu, 29 Mar 2007 21:38:20 +0000 (22:38 +0100) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Fri, 30 Mar 2007 06:11:33 +0000 (23:11 -0700) |
Bryan Wu reported
/usr/local/bin/git-quiltimport: 114: Syntax error: Missing '))'
Most bourne-ish shells I have here accept
x=$((echo x)|cat)
but all bourne-ish shells I have here accept
x=$( (echo x)|cat)
because $(( might mean arithmetic expansion.
Signed-off-by: Francis Daly <francis@daoine.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
/usr/local/bin/git-quiltimport: 114: Syntax error: Missing '))'
Most bourne-ish shells I have here accept
x=$((echo x)|cat)
but all bourne-ish shells I have here accept
x=$( (echo x)|cat)
because $(( might mean arithmetic expansion.
Signed-off-by: Francis Daly <francis@daoine.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
git-quiltimport.sh | patch | blob | history |
diff --git a/git-quiltimport.sh b/git-quiltimport.sh
index 08ac9bb729744660631fd5bdc9b7e11e0fd7d78a..edccd827553d04dde89f210bbb5128ccc09eff3d 100755 (executable)
--- a/git-quiltimport.sh
+++ b/git-quiltimport.sh
if [ -z "$dry_run" ] ; then
git-apply --index -C1 "$tmp_patch" &&
tree=$(git-write-tree) &&
- commit=$((echo "$SUBJECT"; echo; cat "$tmp_msg") | git-commit-tree $tree -p $commit) &&
+ commit=$( (echo "$SUBJECT"; echo; cat "$tmp_msg") | git-commit-tree $tree -p $commit) &&
git-update-ref -m "quiltimport: $patch_name" HEAD $commit || exit 4
fi
done