Skip to content

Commit d10500c

Browse files
committed
Install ide too
1 parent 1efc663 commit d10500c

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

src/swift/windows.ts

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { addPath, debug } from "@actions/core";
22
import { downloadTool } from "@actions/tool-cache";
33
import { cmd, tempDir } from "../core";
44
import { machine } from "os";
5-
import { join, resolve } from "path";
5+
import { join } from "path";
66
import { coerce } from "semver";
77

88
/**
@@ -34,12 +34,7 @@ async function download(version: string) {
3434

3535
const targetPath = join(tmpPath, "Swift");
3636

37-
await cmd(
38-
installerPath,
39-
"/passive",
40-
`InstallRoot=${targetPath}`,
41-
"OptionsInstallIDE=0",
42-
);
37+
await cmd(installerPath, "/passive", `InstallRoot=${targetPath}`);
4338

4439
await cmd("dir", join(targetPath, "Toolchains", "6.1.0+Asserts"));
4540

0 commit comments

Comments
 (0)