diff options
-rwxr-xr-x | Master/tlpkg/libexec/ctan2tds | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index d09cd07add3..19968299e1a 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -3073,8 +3073,8 @@ sub sanitize_file_names { my ($dir) = @_; # -0 in case of spaces or other chars in filenames, which would be # parsed into words by the shell otherwise. - &SYSTEM ("find $dir -print0 \ - | xargs -0 /l/bin/rename 's![^-_A-Za-z0-9.,/+]!!g'"); + &SYSTEM ("find $dir -print0 " + . "| xargs -0 /l/bin/rename 's![^-_A-Za-z0-9.,/+]!!g'"); } |