Skip to content
This repository was archived by the owner on Sep 11, 2025. It is now read-only.

Commit 1f4203d

Browse files
authored
Update index.ts (#677)
1 parent 9f9690e commit 1f4203d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

cli/src/commands/build/index.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,10 @@ export default class BuildCommand extends BaseCommand {
8282
return;
8383
}
8484
let buildTool = path.join(vi.getSdkPath(app.sdk, version), "modus-go-build");
85-
if (os.platform() === "win32") buildTool += ".exe";
85+
if (os.platform() === "win32"){
86+
buildTool += ".exe";
87+
buildTool = '"' + buildTool + '"';
88+
}
8689
if (!(await fs.exists(buildTool))) {
8790
this.logError("Modus Go Build tool is not installed");
8891
return;

0 commit comments

Comments
 (0)