Skip to content

Commit 3fb8d99

Browse files
committed
Fix formatting
1 parent 1349929 commit 3fb8d99

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/toolchain/toolchain.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -658,7 +658,10 @@ export class SwiftToolchain {
658658
const swiftlyPath = path.join(configPath, "swiftly");
659659
if (await fileExists(swiftlyPath)) {
660660
try {
661-
const { stdout } = await execFile(swiftlyPath, ["use", "--print-location"]);
661+
const { stdout } = await execFile(swiftlyPath, [
662+
"use",
663+
"--print-location",
664+
]);
662665
const toolchainPath = path.join(stdout.trim(), "usr");
663666
if (await pathExists(toolchainPath)) {
664667
return toolchainPath;

0 commit comments

Comments
 (0)