Skip to content

Commit 34f7221

Browse files
committed
Fixes url invoke in xcversion install
1 parent 8aceeb1 commit 34f7221

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
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.

index.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ async function installXcode(xcodeVersion, appleID, appleIDPassword) {
4646
core.info(`Found in cache @ ${cachedURL}`);
4747
}
4848

49-
await exec.exec('xcversion', ['install', xcodeVersion, '--url', cachedURL || downloadURL, '--no-clean'], {
49+
await exec.exec('xcversion', ['install', xcodeVersion, `--url=${cachedURL || downloadURL}`, '--no-clean'], {
5050
cwd: process.env.TMPDIR,
5151
env: {
5252
...process.env,

0 commit comments

Comments
 (0)