From eb250c63f91c38201c5aa3fdf55edbacd82f8de7 Mon Sep 17 00:00:00 2001 From: Chad Scharf <3904944+cscharf@users.noreply.github.com> Date: Thu, 14 May 2020 12:40:06 -0400 Subject: [PATCH 1/3] Cert thumbprint instead of name --- gulpfile.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index b11384fb4c..aa8482ffed 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -124,14 +124,14 @@ function distSafariApp(cb, subBuildPath) { const builtAppexFrameworkPath = buildPath + 'build/Release/safari.appex/Contents/Frameworks/'; const entitlementsPath = paths.safari + 'safari/safari.entitlements'; var args = [ - '--verbose', - '--force', - '-o', - 'runtime', - '--sign', - 'Developer ID Application: 8bit Solutions LLC', - '--entitlements', - entitlementsPath + "--verbose", + "--force", + "-o", + "runtime", + "--sign", + "C1921E2FC7B9C2E9F1EAD9BD249CB1507505A862", + "--entitlements", + entitlementsPath, ]; if (subBuildPath !== 'dmg') { args = [ From 9c1cc70f3f532f09becb4a0915376137dcbd91bd Mon Sep 17 00:00:00 2001 From: Chad Scharf <3904944+cscharf@users.noreply.github.com> Date: Thu, 14 May 2020 12:44:35 -0400 Subject: [PATCH 2/3] Fixed double quotes to single --- gulpfile.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index aa8482ffed..6f24f02d8f 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -124,13 +124,13 @@ function distSafariApp(cb, subBuildPath) { const builtAppexFrameworkPath = buildPath + 'build/Release/safari.appex/Contents/Frameworks/'; const entitlementsPath = paths.safari + 'safari/safari.entitlements'; var args = [ - "--verbose", - "--force", - "-o", - "runtime", - "--sign", - "C1921E2FC7B9C2E9F1EAD9BD249CB1507505A862", - "--entitlements", + '--verbose', + '--force', + '-o', + 'runtime', + '--sign', + 'C1921E2FC7B9C2E9F1EAD9BD249CB1507505A862', + '--entitlements', entitlementsPath, ]; if (subBuildPath !== 'dmg') { From 2196ecc5cbe226490ed795db96470d72ec48ead3 Mon Sep 17 00:00:00 2001 From: Chad Scharf <3904944+cscharf@users.noreply.github.com> Date: Thu, 14 May 2020 12:45:22 -0400 Subject: [PATCH 3/3] Removed trailing comma --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 6f24f02d8f..d16262216a 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -131,7 +131,7 @@ function distSafariApp(cb, subBuildPath) { '--sign', 'C1921E2FC7B9C2E9F1EAD9BD249CB1507505A862', '--entitlements', - entitlementsPath, + entitlementsPath ]; if (subBuildPath !== 'dmg') { args = [