We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d38790 commit e4ebd11Copy full SHA for e4ebd11
collector/src/execute.rs
@@ -639,7 +639,11 @@ impl Upload {
639
640
let append_file =
641
|builder: &mut tar::Builder<_>, file: &Path, name: &str| -> anyhow::Result<()> {
642
- builder.append_path_with_name(file, name)?;
+ if file.exists() {
643
+ // Silently ignore missing files, the new self-profile
644
+ // experiment with one file has a different structure.
645
+ builder.append_path_with_name(file, name)?;
646
+ }
647
Ok(())
648
};
649
append_file(
0 commit comments