Skip to content
This repository was archived by the owner on Apr 4, 2023. It is now read-only.

Commit 57969d0

Browse files
"${PODS_ROOT}/Fabric/run" double quote is missing #1107
1 parent df29885 commit 57969d0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

publish/scripts/installer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ module.exports = function($logger, $projectData, hookArgs) {
501501
if (fs.existsSync(xcodeProjectPath)) {
502502
var xcodeProject = xcode.project(xcodeProjectPath);
503503
xcodeProject.parseSync();
504-
var options = { shellPath: '/bin/sh', shellScript: '\${PODS_ROOT}/Fabric/run' };
504+
var options = { shellPath: '/bin/sh', shellScript: '\"\${PODS_ROOT}/Fabric/run\"' };
505505
xcodeProject.addBuildPhase(
506506
[], 'PBXShellScriptBuildPhase', 'Configure Crashlytics', undefined, options
507507
).buildPhase;

src/scripts/postinstall.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3299,7 +3299,7 @@ module.exports = function($logger, $projectData, hookArgs) {
32993299
if (fs.existsSync(xcodeProjectPath)) {
33003300
var xcodeProject = xcode.project(xcodeProjectPath);
33013301
xcodeProject.parseSync();
3302-
var options = { shellPath: '/bin/sh', shellScript: '\${PODS_ROOT}/Fabric/run' };
3302+
var options = { shellPath: '/bin/sh', shellScript: '\"\${PODS_ROOT}/Fabric/run\"' };
33033303
xcodeProject.addBuildPhase(
33043304
[], 'PBXShellScriptBuildPhase', 'Configure Crashlytics', undefined, options
33053305
).buildPhase;

0 commit comments

Comments
 (0)