We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d78ecaf commit 4cf163fCopy full SHA for 4cf163f
warp-packer/src/main.rs
@@ -90,6 +90,7 @@ fn create_tgz(dir: &Path, out: &Path) -> io::Result<()> {
90
let f = fs::File::create(out)?;
91
let gz = GzEncoder::new(f, Compression::best());
92
let mut tar = tar::Builder::new(gz);
93
+ tar.follow_symlinks(false);
94
tar.append_dir_all(".", dir)?;
95
Ok(())
96
}
0 commit comments