Skip to content

Commit

Permalink
swap logic
Browse files Browse the repository at this point in the history
  • Loading branch information
amr-crabnebula committed Sep 21, 2023
1 parent 2bda3b3 commit 5d24f64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/packager/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ pub fn sign_outputs(
let zip = path.with_extension(format!(
"{}{}tar.gz",
extension,
if extension.is_empty() { "." } else { "" }
if extension.is_empty() { "" } else { "." }
));
let dest_file = util::create_file(&zip)?;
let gzip_encoder = libflate::gzip::Encoder::new(dest_file)?;
Expand Down

0 comments on commit 5d24f64

Please sign in to comment.