Create bundle metadata for universal binaries
This commit is contained in:
parent
0475c7000b
commit
45b609791d
|
@ -699,7 +699,10 @@ pub fn maybe_create_macos_bundle_metadata(
|
||||||
target: CompilationTarget,
|
target: CompilationTarget,
|
||||||
bundle_type: BundleType,
|
bundle_type: BundleType,
|
||||||
) -> Result<()> {
|
) -> Result<()> {
|
||||||
if !matches!(target, CompilationTarget::MacOS(_)) {
|
if !matches!(
|
||||||
|
target,
|
||||||
|
CompilationTarget::MacOS(_) | CompilationTarget::MacOSUniversal
|
||||||
|
) {
|
||||||
return Ok(());
|
return Ok(());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue