diff --git a/src/Squirrel.CommandLine/OSX/Commands.cs b/src/Squirrel.CommandLine/OSX/Commands.cs index ac65f7a06..cf701d5dc 100644 --- a/src/Squirrel.CommandLine/OSX/Commands.cs +++ b/src/Squirrel.CommandLine/OSX/Commands.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.IO; using System.Linq; @@ -132,6 +132,7 @@ private static void Pack(PackOptions options) HelperExe.CreateDittoZip(appBundlePath, zipPath); HelperExe.Notarize(zipPath, options.notaryProfile); HelperExe.Staple(appBundlePath); + HelperExe.SpctlAssess(appBundlePath); File.Delete(zipPath); } else if (SquirrelRuntimeInfo.IsOSX && !String.IsNullOrEmpty(options.signAppIdentity)) { HelperExe.CodeSign(options.signAppIdentity, options.signEntitlements, appBundlePath);