2022-06-30 13:27:56 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
PROJECTS=$(dirname "$0")/../..
|
|
|
|
|
|
|
|
go get -x github.com/sagernet/sing@$(git -C $PROJECTS/sing rev-parse HEAD)
|
2022-07-11 10:44:59 +00:00
|
|
|
go get -x github.com/sagernet/sing-dns@$(git -C $PROJECTS/sing-dns rev-parse HEAD)
|
2022-07-12 07:17:29 +00:00
|
|
|
go get -x github.com/sagernet/sing-tun@$(git -C $PROJECTS/sing-tun rev-parse HEAD)
|
2022-06-30 13:27:56 +00:00
|
|
|
go get -x github.com/sagernet/sing-shadowsocks@$(git -C $PROJECTS/sing-shadowsocks rev-parse HEAD)
|
|
|
|
go mod tidy
|
2022-07-09 01:26:50 +00:00
|
|
|
pushd test
|
|
|
|
go mod tidy
|
|
|
|
popd
|