Skip to content

Commit

Permalink
Remove stray debug and note decompress bug that produces output
Browse files Browse the repository at this point in the history
  • Loading branch information
alexpdp7 committed Mar 4, 2024
1 parent 2ecfb15 commit fb13527
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/base.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ pub fn base(builder: &mut GlobalsBuilder) {
asset_path,
tmp_dir.path().to_path_buf(),
&decompress::ExtractOptsBuilder::default()
.filter(move |p| p == x)
.filter(move |p| p == x) // produces output https://github.com/rusty-ferris-club/decompress/issues/15
.build()
.unwrap(),
)
Expand Down
2 changes: 1 addition & 1 deletion src/github.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ fn repo_methods(builder: &mut MethodsBuilder) {
.to_string();
Ok(GitHubRelease {
github_repo: repo.clone(),
tag: dbg!(last_version),
tag: last_version,
})
}
}
Expand Down

0 comments on commit fb13527

Please sign in to comment.