Skip to content

Commit 3b91c30

Browse files
raalkmlgitster
authored andcommitted
Fix t4030-diff-textconv.sh
Avoid passing cygwin pathnames to Perl. Some Perls have problems using them Signed-off-by: Alex Riesen <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent f755bb9 commit 3b91c30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t/t4030-diff-textconv.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ EOF
2121

2222
cat >hexdump <<'EOF'
2323
#!/bin/sh
24-
perl -e '$/ = undef; $_ = <>; s/./ord($&)/ge; print $_' "$1"
24+
perl -e '$/ = undef; $_ = <>; s/./ord($&)/ge; print $_' < "$1"
2525
EOF
2626
chmod +x hexdump
2727

0 commit comments

Comments
 (0)