diff options
author | Michael Haggerty <mhagger@alum.mit.edu> | 2010-01-22 10:22:30 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-01-22 13:18:38 -0800 |
commit | 30c9e919b6ef33b0427a3ad784ed9e951ea48648 (patch) | |
tree | 75314bb443c7fc9f6c660719af3a82c9e4cb00dd /t | |
parent | rebase -i: Avoid non-portable "test X -a Y" (diff) | |
download | tgif-30c9e919b6ef33b0427a3ad784ed9e951ea48648.tar.xz |
rebase -i: Enclose sed command substitution in quotes
Reported by: Johannes Sixt <j.sixt@viscovery.net>
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rw-r--r-- | t/lib-rebase.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/lib-rebase.sh b/t/lib-rebase.sh index 2d922ae43c..6aefe27593 100644 --- a/t/lib-rebase.sh +++ b/t/lib-rebase.sh @@ -27,7 +27,7 @@ set_fake_editor () { case "$1" in */COMMIT_EDITMSG) test -z "$EXPECT_HEADER_COUNT" || - test "$EXPECT_HEADER_COUNT" = $(sed -n '1s/^# This is a combination of \(.*\) commits\./\1/p' < "$1") || + test "$EXPECT_HEADER_COUNT" = "$(sed -n '1s/^# This is a combination of \(.*\) commits\./\1/p' < "$1")" || exit test -z "$FAKE_COMMIT_MESSAGE" || echo "$FAKE_COMMIT_MESSAGE" > "$1" test -z "$FAKE_COMMIT_AMEND" || echo "$FAKE_COMMIT_AMEND" >> "$1" |