Skip to content

Commit

Permalink
Fixed codesigning
Browse files Browse the repository at this point in the history
Fixed codesigning
  • Loading branch information
inket committed May 7, 2021
1 parent 5242ba2 commit 36cc6af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions MacSymbolicator.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "# This script fixes the ShipIt hardened runtime issue to allow us\n# to notarize the app\n\n# Skip if debug, as this is not needed then\nif [[ \"${CONFIGURATION}\" == \"Debug\" ]]; then\n exit 0\nfi\n\nLOCATION=\"${BUILT_PRODUCTS_DIR}\"/\"${FRAMEWORKS_FOLDER_PATH}\"\n\n# By default, use the configured code signing identity for the project/target\nIDENTITY=\"${CODE_SIGN_IDENTITY}:\"\nif [ \"$IDENTITY\" == \"\" ]\nthen\n# If a code signing identity is not specified, use ad hoc signing\nIDENTITY=\"-\"\nfi\n\n\ncodesign --verbose --force --deep -o runtime --sign \"$IDENTITY\" \"$LOCATION/Squirrel.framework/Resources/Shipit\"\n";
shellScript = "# This script fixes the ShipIt hardened runtime issue to allow us\n# to notarize the app\n\n# Skip if debug, as this is not needed then\nif [[ \"${CONFIGURATION}\" == \"Debug\" ]]; then\n exit 0\nfi\n\nLOCATION=\"${BUILT_PRODUCTS_DIR}\"/\"${FRAMEWORKS_FOLDER_PATH}\"\n\n# By default, use the configured code signing identity for the project/target\nIDENTITY=\"${CODE_SIGN_IDENTITY}\"\nif [ \"$IDENTITY\" == \"\" ]\nthen\n# If a code signing identity is not specified, use ad hoc signing\nIDENTITY=\"-\"\nfi\n\ncodesign --verbose --force --deep -o runtime --sign \"$IDENTITY\" \"$LOCATION/Squirrel.framework/Resources/Shipit\"\n";
};
/* End PBXShellScriptBuildPhase section */

Expand Down Expand Up @@ -614,7 +614,7 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_ENTITLEMENTS = Resources/MacSymbolicator.entitlements;
CODE_SIGN_IDENTITY = "Mac Developer";
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 4;
Expand All @@ -640,7 +640,7 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_ENTITLEMENTS = Resources/MacSymbolicator.entitlements;
CODE_SIGN_IDENTITY = "Mac Developer";
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 4;
Expand Down

0 comments on commit 36cc6af

Please sign in to comment.