Skip to content

Commit

Permalink
fix signing extension
Browse files Browse the repository at this point in the history
  • Loading branch information
BrettMayson committed Jan 28, 2023
1 parent 872fe72 commit 5104137
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions bin/app/src/modules/sign.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ impl Module for Sign {
};
(
ReadablePbo::from(File::open(&target_pbo)?)?,
target_pbo.with_extension(format!(".pbo.{authority}.bisign")),
target_pbo.with_extension(format!("pbo.{authority}.bisign")),
addons_key.clone(),
)
}
Expand Down Expand Up @@ -79,7 +79,7 @@ impl Module for Sign {
target_pbo.set_extension("pbo");
(
ReadablePbo::from(File::open(&target_pbo)?)?,
target_pbo.with_extension(format!(".pbo.{authority}.bisign")),
target_pbo.with_extension(format!("pbo.{authority}.bisign")),
key,
)
}
Expand Down

0 comments on commit 5104137

Please sign in to comment.