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] 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') {