summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 451fd65)
raw | patch | inline | side by side (parent: 451fd65)
author | Alex Riesen <raa.lkml@gmail.com> | |
Mon, 5 Feb 2007 13:04:09 +0000 (14:04 +0100) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Wed, 7 Feb 2007 08:35:15 +0000 (00:35 -0800) |
Use sed instead, it comes with cygwin and there is almost no chance of
someone installing a sed with default CRLF lineendings by accident.
Signed-off-by: Alex Riesen <raa.lkml@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
someone installing a sed with default CRLF lineendings by accident.
Signed-off-by: Alex Riesen <raa.lkml@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
t/annotate-tests.sh | patch | blob | history |
diff --git a/t/annotate-tests.sh b/t/annotate-tests.sh
index b5ceba4acfd8e862cfc5a77672241e07205f70ea..87403da780814787f6c4ea15a790381a5b2395d3 100644 (file)
--- a/t/annotate-tests.sh
+++ b/t/annotate-tests.sh
test_expect_success \
'some edit' \
- 'perl -p -i.orig -e "s/^1A.*\n$//; s/^3A/99/" file &&
+ 'mv file file.orig &&
+ sed -e "s/^3A/99/" -e "/^1A/d" < file.orig > file &&
GIT_AUTHOR_NAME="D" git commit -a -m "edit"'
test_expect_success \