Skip to content

Commit

Permalink
chore(easyvpn) fix makefile options for other platforms
Browse files Browse the repository at this point in the history
Signed-off-by: Damien Duportal <[email protected]>
  • Loading branch information
dduportal committed Dec 22, 2021
1 parent a9c84ea commit 193d199
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions utils/easyvpn/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ build_linux:
GO111MODULE=on CGO_ENABLED=0 GOOS=linux go build -installsuffix cgo -v .

init_osx:
docker run --rm -v "$(CURDIR)":/easyvpn -w /easyvpn -e GOOS=windows golang:$(GOLANG_VERSION) make build_osx
docker run --rm -v "$(CURDIR)":/easyvpn -w /easyvpn golang:$(GOLANG_VERSION) make build_osx

init_linux:
docker run --rm -v "$(CURDIR)":/easyvpn -w /easyvpn -e GOOS=windows golang:$(GOLANG_VERSION) make build_linux
docker run --rm -v "$(CURDIR)":/easyvpn -w /easyvpn golang:$(GOLANG_VERSION) make build_linux

init_windows:
docker run --rm -v "$(CURDIR)":/easyvpn -w /easyvpn -e GOOS=windows golang:$(GOLANG_VERSION) make build_windows
docker run --rm -v "$(CURDIR)":/easyvpn -w /easyvpn golang:$(GOLANG_VERSION) make build_windows

0 comments on commit 193d199

Please sign in to comment.