12 lines
244 B
Bash
12 lines
244 B
Bash
#!/bin/bash
|
|
|
|
echo "Initializing Go modules..."
|
|
|
|
go mod tidy
|
|
go get github.com/fatih/color@v1.16.0
|
|
go get golang.org/x/sys@v0.16.0
|
|
|
|
echo ""
|
|
echo "Dependencies installed!"
|
|
echo "Now you can run: go build -ldflags=\"-s -w\" -o vpn-client main.go"
|