From: Alex Riesen Date: Wed, 19 Nov 2008 11:14:50 +0000 (+0100) Subject: Fix t4030-diff-textconv.sh X-Git-Tag: v1.6.1-rc1~27 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=3b91c30b763d972c5e133507ccc4b749dc2c6df5;p=git.git Fix t4030-diff-textconv.sh Avoid passing cygwin pathnames to Perl. Some Perls have problems using them Signed-off-by: Alex Riesen Signed-off-by: Junio C Hamano --- diff --git a/t/t4030-diff-textconv.sh b/t/t4030-diff-textconv.sh index 03ba26a0d..0b76e7c97 100755 --- a/t/t4030-diff-textconv.sh +++ b/t/t4030-diff-textconv.sh @@ -21,7 +21,7 @@ EOF cat >hexdump <<'EOF' #!/bin/sh -perl -e '$/ = undef; $_ = <>; s/./ord($&)/ge; print $_' "$1" +perl -e '$/ = undef; $_ = <>; s/./ord($&)/ge; print $_' < "$1" EOF chmod +x hexdump