-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Had to set CGO_ENABLED back to 1 because the sqllite library depends on it.
- Loading branch information
Jeff Lanzarotta
committed
Feb 4, 2025
1 parent
ad87a9d
commit 17fa455
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ builds: | |
- binary: | ||
khronos | ||
env: | ||
- CGO_ENABLED=0 | ||
- CGO_ENABLED=1 | ||
goos: | ||
- windows | ||
goarch: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
@echo off | ||
set CGO_ENABLED=0 | ||
set CGO_ENABLED=1 | ||
set GOOS=windows | ||
set GOARCH=amd64 | ||
set BUILD_VERSION=1.0.4 | ||
|