diff options
author | Alex Riesen <raa.lkml@gmail.com> | 2008-11-19 12:14:50 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-11-23 19:32:07 -0800 |
commit | 3b91c30b763d972c5e133507ccc4b749dc2c6df5 (patch) | |
tree | 8e9e1cbe3f1f406d755b5eaae69f06ec20a175d5 /t | |
parent | Fix handle leak in sha1_file/unpack_objects if there were damaged object data (diff) | |
download | tgif-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-x | t/t4030-diff-textconv.sh | 2 |
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 |