We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1efc663 commit d10500cCopy full SHA for d10500c
src/swift/windows.ts
@@ -2,7 +2,7 @@ import { addPath, debug } from "@actions/core";
2
import { downloadTool } from "@actions/tool-cache";
3
import { cmd, tempDir } from "../core";
4
import { machine } from "os";
5
-import { join, resolve } from "path";
+import { join } from "path";
6
import { coerce } from "semver";
7
8
/**
@@ -34,12 +34,7 @@ async function download(version: string) {
34
35
const targetPath = join(tmpPath, "Swift");
36
37
- await cmd(
38
- installerPath,
39
- "/passive",
40
- `InstallRoot=${targetPath}`,
41
- "OptionsInstallIDE=0",
42
- );
+ await cmd(installerPath, "/passive", `InstallRoot=${targetPath}`);
43
44
await cmd("dir", join(targetPath, "Toolchains", "6.1.0+Asserts"));
45
0 commit comments