Fix macOS deployment

This commit is contained in:
Jonas Kvinge
2021-03-18 00:52:04 +01:00
parent 8193be36e5
commit 6fb48af598
7 changed files with 127 additions and 18 deletions

View File

@@ -278,6 +278,10 @@ int main(int argc, char **argv)
if (runStripEnabled)
stripAppBinary(appBundlePath);
if (!FinalCheck(appBundlePath)) {
return 1;
}
if (runCodesign)
codesign(codesignIdentiy, appBundlePath);
@@ -288,4 +292,3 @@ int main(int argc, char **argv)
return 0;
}