Disable debug build for MoltenVK (#32)

* Disable debug build for MoltenVK

* Fix variable name
This commit is contained in:
Marnix Kuijs 2020-11-10 12:42:12 +01:00 committed by GitHub
parent c32356a022
commit 3d1b468aeb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -96,12 +96,9 @@ mod mac {
assert!(status.success(), "failed to fetchDependencies");
let mut target = target_name.to_owned();
target.push_str("-debug");
let status = Command::new("make")
.current_dir(&checkout_dir)
.arg(target)
.arg(target_name)
.spawn()
.expect("failed to build MoltenVK")
.wait()