Skip to content

Commit 99fcb40

Browse files
Merge pull request #1753 from NativeScript/vladimirov/fix-xcproj-quotes
Fix xcproj touch
2 parents 00fa471 + 363ba65 commit 99fcb40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/services/ios-project-service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -677,7 +677,7 @@ export class IOSProjectService extends projectServiceBaseLib.PlatformProjectServ
677677
}
678678

679679
if (this.$xcprojService.getXcprojInfo().wait().shouldUseXcproj) {
680-
this.$childProcess.exec(`xcproj --project ${this.xcodeprojPath} touch`).wait();
680+
this.$childProcess.spawnFromEvent("xcproj", ["--project", this.xcodeprojPath, "touch"], "close").wait();
681681
}
682682

683683
return childProcess;

0 commit comments

Comments
 (0)