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 cfdd2a9 commit ad02795Copy full SHA for ad02795
src/swift/windows.ts
@@ -9,7 +9,9 @@ import { join, resolve } from "path";
9
*/
10
export async function setupWindows(version: string) {
11
const path = await download(version);
12
- addPath(path);
+ addPath(
13
+ "C:\\Library\\Developer\\Toolchains\\unknown-Asserts-development.xctoolchain\\usr\\bin",
14
+ );
15
}
16
17
async function download(version: string) {
@@ -36,7 +38,7 @@ async function download(version: string) {
36
38
await cmd(
37
39
installerPath,
40
"/passive",
- `InstallRoot=${binPath}`,
41
+ //`InstallRoot=${binPath}`,
42
"OptionsInstallIDE=0",
43
);
44
0 commit comments