Fork of daniellemaywood.uk/gleam — Wasm codegen work
2

Configure Feed

Select the types of activity you want to include in your feed.

Add a trace log line for when a symlink is skipped

+1
+1
compiler-cli/src/fs.rs
··· 779 779 780 780 // Skip symlinks to prevent path traversal outside the source tree 781 781 if file_type.is_symlink() { 782 + tracing::trace!(path=?source_path, "skipping_symlink_in_hardlink_dir"); 782 783 continue; 783 784 } 784 785