Skip to content

Commit

Permalink
Change to static linking (#97)
Browse files Browse the repository at this point in the history
* Change to static linking

* 0.14.1
  • Loading branch information
baksetercx authored Oct 28, 2024
1 parent 0e933a0 commit 3a0d553
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ lint:
## build: Build the binary (tries to guess the OS and architecture).
.PHONY: build
build:
GOOS=${go_os} GOARCH=${go_arch} go build -o ${build_dir}/${binary_name} ${main_package_path}
GOOS=${go_os} GOARCH=${go_arch} CGO_ENABLED=0 go build -o ${build_dir}/${binary_name} ${main_package_path}

## build-linux-amd64: Build the binary for Linux/amd64.
.PHONY: build-linux-amd64
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.14.0
0.14.1

0 comments on commit 3a0d553

Please sign in to comment.