1
0
Fork 0

Create bundle metadata for universal binaries

This commit is contained in:
Robbert van der Helm 2022-09-15 13:28:09 +02:00
parent 0475c7000b
commit 45b609791d

View file

@ -699,7 +699,10 @@ pub fn maybe_create_macos_bundle_metadata(
target: CompilationTarget,
bundle_type: BundleType,
) -> Result<()> {
if !matches!(target, CompilationTarget::MacOS(_)) {
if !matches!(
target,
CompilationTarget::MacOS(_) | CompilationTarget::MacOSUniversal
) {
return Ok(());
}