Skip to content

Commit

Permalink
Make bins target build both Linux and macOS binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
rikonen committed Nov 15, 2018
1 parent 17af4c6 commit d54f54d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ update-vendor:
#################################################

bins: vendor
packr build -o terraform-provider-aiven .
GOOS=linux GOARCH=amd64 packr build -o terraform-provider-aiven-linux_amd64 .
GOOS=darwin GOARCH=amd64 packr build -o terraform-provider-aiven-darwin_amd64 .

#################################################
# Testing and linting
Expand Down

0 comments on commit d54f54d

Please sign in to comment.