Skip to content

Fix funny filenames #56

Merged
merged 2 commits into from May 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/filelist2content.sh.in
Expand Up @@ -64,7 +64,7 @@ function do_f2c() {
exit 1
fi

while read filename ; do
while IFS='' read -r filename ; do
data=$(stat --format "$(get_format_string)" "${root}${filename}")

if [ "$?" -gt 0 ] ; then
Expand Down