Skip to content
This repository was archived by the owner on Sep 11, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@

- chore: add timezone header to api explorer

## 2025-01-06 - CLI 0.16.2

- fix: revert invalid change [#680](https://github.com/hypermodeinc/modus/pull/680)

## 2025-01-04 - CLI 0.16.1

- fix: attempt to fix windows issue [#677](https://github.com/hypermodeinc/modus/pull/677)

## 2024-12-23 - Runtime 0.16.1

- fix: resolve time zone issues [#666](https://github.com/hypermodeinc/modus/pull/666)
Expand Down
5 changes: 1 addition & 4 deletions cli/src/commands/build/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,7 @@ export default class BuildCommand extends BaseCommand {
return;
}
let buildTool = path.join(vi.getSdkPath(app.sdk, version), "modus-go-build");
if (os.platform() === "win32"){
buildTool += ".exe";
buildTool = '"' + buildTool + '"';
}
if (os.platform() === "win32") buildTool += ".exe";
if (!(await fs.exists(buildTool))) {
this.logError("Modus Go Build tool is not installed");
return;
Expand Down
Loading