Skip to content

Commit

Permalink
Fix symlinks handling #45
Browse files Browse the repository at this point in the history
  • Loading branch information
xonixx committed Sep 21, 2024
1 parent b14f713 commit 510806d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/com/cmlteam/serv/HttpHandlerListing.java
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ private void showList(
} else if (file.isFile()) {
writeFileRow(os, fIdxFixed, file);
} else {
System.err.println("warning: not supported (symlink?): " + file);
System.err.println("warning: not supported: " + file);
}
}
writeFooter(os);
Expand Down
1 change: 0 additions & 1 deletion src/main/java/com/cmlteam/serv/TarUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ private static void addToArchiveCompression(
}
}
} else {
// TODO this could be due to absent permission
System.err.println("warning: not supported: " + file);
}
}
Expand Down

0 comments on commit 510806d

Please sign in to comment.