Skip to content

Commit

Permalink
Merge pull request #157 from liulanzheng/main
Browse files Browse the repository at this point in the history
Makefile: disable cgo
  • Loading branch information
BigVan authored Nov 10, 2022
2 parents a8cedba + cfdbe44 commit fd022b9
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 @@ -19,7 +19,7 @@ force:
# build a binary from cmd
bin/%: cmd/% force
@echo "$@"
@GOOS=linux go build -o $@ ./$<
@GOOS=linux CGO_ENABLED=0 go build -o $@ ./$<

install: ## install binaries from bin
@mkdir -p $(SN_DESTDIR)
Expand Down
2 changes: 1 addition & 1 deletion nfpm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
name: "overlaybd-snapshotter"
arch: "amd64"
platform: "linux"
version: "v0.5.1"
version: "v0.5.2"
section: "default"
priority: "extra"

Expand Down

0 comments on commit fd022b9

Please sign in to comment.