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 1349929 commit 3fb8d99Copy full SHA for 3fb8d99
src/toolchain/toolchain.ts
@@ -658,7 +658,10 @@ export class SwiftToolchain {
658
const swiftlyPath = path.join(configPath, "swiftly");
659
if (await fileExists(swiftlyPath)) {
660
try {
661
- const { stdout } = await execFile(swiftlyPath, ["use", "--print-location"]);
+ const { stdout } = await execFile(swiftlyPath, [
662
+ "use",
663
+ "--print-location",
664
+ ]);
665
const toolchainPath = path.join(stdout.trim(), "usr");
666
if (await pathExists(toolchainPath)) {
667
return toolchainPath;
0 commit comments