Skip to content

Commit ad02795

Browse files
committed
Use standard path and add it
1 parent cfdd2a9 commit ad02795

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/swift/windows.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ import { join, resolve } from "path";
99
*/
1010
export async function setupWindows(version: string) {
1111
const path = await download(version);
12-
addPath(path);
12+
addPath(
13+
"C:\\Library\\Developer\\Toolchains\\unknown-Asserts-development.xctoolchain\\usr\\bin",
14+
);
1315
}
1416

1517
async function download(version: string) {
@@ -36,7 +38,7 @@ async function download(version: string) {
3638
await cmd(
3739
installerPath,
3840
"/passive",
39-
`InstallRoot=${binPath}`,
41+
//`InstallRoot=${binPath}`,
4042
"OptionsInstallIDE=0",
4143
);
4244

0 commit comments

Comments
 (0)