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

Commit 578597e

Browse files
fix: revert invalid change (#680)
1 parent b3170c2 commit 578597e

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@
44

55
- chore: add timezone header to api explorer
66

7+
## 2025-01-06 - CLI 0.16.2
8+
9+
- fix: revert invalid change [#680](https://github.com/hypermodeinc/modus/pull/680)
10+
11+
## 2025-01-04 - CLI 0.16.1
12+
13+
- fix: attempt to fix windows issue [#677](https://github.com/hypermodeinc/modus/pull/677)
14+
715
## 2024-12-23 - Runtime 0.16.1
816

917
- fix: resolve time zone issues [#666](https://github.com/hypermodeinc/modus/pull/666)

cli/src/commands/build/index.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,7 @@ 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"){
86-
buildTool += ".exe";
87-
buildTool = '"' + buildTool + '"';
88-
}
85+
if (os.platform() === "win32") buildTool += ".exe";
8986
if (!(await fs.exists(buildTool))) {
9087
this.logError("Modus Go Build tool is not installed");
9188
return;

0 commit comments

Comments
 (0)