Skip to content

Commit

Permalink
fix: no CGO
Browse files Browse the repository at this point in the history
  • Loading branch information
lucassabreu committed Jun 16, 2024
1 parent 3bde654 commit b26d6e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dist: deps-install dist/darwin dist/linux dist/windows ## build all cli versions

dist-internal:
mkdir -p dist/$(goos)
GOOS=$(goos) GOARCH=$(goarch) go build -o dist/$(goos)/clockify-cli $(MAIN_PKG)
CGO_ENABLED=0 GOOS=$(goos) GOARCH=$(goarch) go build -o dist/$(goos)/clockify-cli $(MAIN_PKG)

dist/darwin:
make dist-internal goos=darwin goarch=amd64
Expand Down

0 comments on commit b26d6e6

Please sign in to comment.