summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorLibravatar Alex Riesen <raa.lkml@gmail.com>2008-11-19 12:14:50 +0100
committerLibravatar Junio C Hamano <gitster@pobox.com>2008-11-23 19:32:07 -0800
commit3b91c30b763d972c5e133507ccc4b749dc2c6df5 (patch)
tree8e9e1cbe3f1f406d755b5eaae69f06ec20a175d5 /t
parentFix handle leak in sha1_file/unpack_objects if there were damaged object data (diff)
downloadtgif-3b91c30b763d972c5e133507ccc4b749dc2c6df5.tar.xz
Fix t4030-diff-textconv.sh
Avoid passing cygwin pathnames to Perl. Some Perls have problems using them Signed-off-by: Alex Riesen <raa.lkml@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-xt/t4030-diff-textconv.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t4030-diff-textconv.sh b/t/t4030-diff-textconv.sh
index 03ba26a0de..0b76e7c97a 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