mirror of
https://github.com/dyhkwong/Exclave.git
synced 2026-06-21 17:13:13 +08:00
11 lines
294 B
Bash
Executable File
11 lines
294 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
source "bin/init/env.sh"
|
|
|
|
export PATH="$PATH:$(go env GOPATH)/bin"
|
|
|
|
[ -f library/v2ray/go.mod ] || git submodule update --init library/v2ray || exit 1
|
|
cd library/v2ray
|
|
git reset --hard && git clean -fdx
|
|
go mod download -x && go get -v golang.org/x/mobile/cmd/... || exit 1
|