Skip to content

Commit

Permalink
remove warning
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog committed Aug 21, 2024
1 parent a939520 commit 1387c4a
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions tooling/cli/src/mobile/ios/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -362,11 +362,7 @@ pub fn signing_from_env() -> Result<(
log::warn!("The IOS_CERTIFICATE environment variable is set but not IOS_CERTIFICATE_PASSWORD. Ignoring the certificate...");
None
}
(None, Some(_)) => {
log::warn!("The IOS_CERTIFICATE_PASSWORD environment variable is set but not IOS_CERTIFICATE. Ignoring the certificate...");
None
}
(None, None) => None,
_ => None,
};

let provisioning_profile = if let Some(provisioning_profile) = var_os("IOS_MOBILE_PROVISION") {
Expand Down

0 comments on commit 1387c4a

Please sign in to comment.