Skip to content

Commit 4a8815c

Browse files
cmd
1 parent e099fe3 commit 4a8815c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58180,7 +58180,7 @@ async function getProjectScheme(projectPath) {
5818058180
async function downloadPlatformSdkIfMissing(platform, version) {
5818158181
await (0, exec_1.exec)('xcodes', ['runtimes']);
5818258182
if (version) {
58183-
await (0, exec_1.exec)('xcodes', ['runtimes', `install "${platform} ${version}"`]);
58183+
await (0, exec_1.exec)('xcodes', ['runtimes', 'install', `${platform} ${version}`]);
5818458184
}
5818558185
else {
5818658186
await (0, exec_1.exec)(xcodebuild, ['-downloadPlatform', platform]);

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/xcode.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ async function getProjectScheme(projectPath: string): Promise<string> {
212212
async function downloadPlatformSdkIfMissing(platform: string, version: string | null) {
213213
await exec('xcodes', ['runtimes']);
214214
if (version) {
215-
await exec('xcodes', ['runtimes', `install "${platform} ${version}"`]);
215+
await exec('xcodes', ['runtimes', 'install', `${platform} ${version}`]);
216216
}
217217
else {
218218
await exec(xcodebuild, ['-downloadPlatform', platform]);

0 commit comments

Comments
 (0)