Skip to content

Commit

Permalink
literal str
Browse files Browse the repository at this point in the history
  • Loading branch information
amr-crabnebula authored Sep 5, 2024
1 parent 4f6f8b6 commit b3ccd94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/resource-resolver/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ pub fn current_format() -> crate::Result<PackageFormat> {
// maybe having a special crate for the Config struct,
// that both packager and resource-resolver could be a
// better alternative
match std::option_env!(CARGO_PACKAGER_FORMAT) {
match std::option_env!("CARGO_PACKAGER_FORMAT") {
Some("app") => Ok(PackageFormat::App),
Some("dmg") => Ok(PackageFormat::Dmg),
Some("wix") => Ok(PackageFormat::Wix),
Expand Down

0 comments on commit b3ccd94

Please sign in to comment.