mirror of
https://github.com/net-byte/vtun
synced 2024-03-14 10:50:03 +08:00
12 lines
289 B
Bash
12 lines
289 B
Bash
#!bin/bash
|
|
export GO111MODULE=on
|
|
|
|
#Linux
|
|
GOOS=linux GOARCH=amd64 go build -o ./bin/vtun-linux-amd64 ./main.go
|
|
#Mac OS
|
|
GOOS=darwin GOARCH=amd64 go build -o ./bin/vtun-darwin-amd64 ./main.go
|
|
#Windows
|
|
GOOS=windows GOARCH=amd64 go build -o ./bin/vtun-windows-amd64.exe ./main.go
|
|
|
|
echo "done!"
|