Fixed double quotes to single
This commit is contained in:
parent
eb250c63f9
commit
9c1cc70f3f
14
gulpfile.js
14
gulpfile.js
|
@ -124,13 +124,13 @@ function distSafariApp(cb, subBuildPath) {
|
||||||
const builtAppexFrameworkPath = buildPath + 'build/Release/safari.appex/Contents/Frameworks/';
|
const builtAppexFrameworkPath = buildPath + 'build/Release/safari.appex/Contents/Frameworks/';
|
||||||
const entitlementsPath = paths.safari + 'safari/safari.entitlements';
|
const entitlementsPath = paths.safari + 'safari/safari.entitlements';
|
||||||
var args = [
|
var args = [
|
||||||
"--verbose",
|
'--verbose',
|
||||||
"--force",
|
'--force',
|
||||||
"-o",
|
'-o',
|
||||||
"runtime",
|
'runtime',
|
||||||
"--sign",
|
'--sign',
|
||||||
"C1921E2FC7B9C2E9F1EAD9BD249CB1507505A862",
|
'C1921E2FC7B9C2E9F1EAD9BD249CB1507505A862',
|
||||||
"--entitlements",
|
'--entitlements',
|
||||||
entitlementsPath,
|
entitlementsPath,
|
||||||
];
|
];
|
||||||
if (subBuildPath !== 'dmg') {
|
if (subBuildPath !== 'dmg') {
|
||||||
|
|
Loading…
Reference in New Issue