mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
1.1 KiB
25 lines
1.1 KiB
#!/bin/bash |
|
|
|
pushd $GOPATH/src/v2ray.com/core/external |
|
|
|
rsync -rv "$GOPATH/src/github.com/lucas-clemente/quic-go/" "./github.com/lucas-clemente/quic-go/" |
|
rm -rf ./github.com/lucas-clemente/quic-go/\.* |
|
rm -rf ./github.com/lucas-clemente/quic-go/benchmark |
|
rm -rf ./github.com/lucas-clemente/quic-go/docs |
|
rm -rf ./github.com/lucas-clemente/quic-go/example |
|
rm -rf ./github.com/lucas-clemente/quic-go/h2quic |
|
rm -rf ./github.com/lucas-clemente/quic-go/integrationtests |
|
rm -rf ./github.com/lucas-clemente/quic-go/internal/mocks |
|
rm ./github.com/lucas-clemente/quic-go/vendor/vendor.json |
|
|
|
rsync -rv "./github.com/lucas-clemente/quic-go/vendor/github.com/cheekybits/" "./github.com/cheekybits/" |
|
rsync -rv "./github.com/lucas-clemente/quic-go/vendor/github.com/cloudflare/" "./github.com/cloudflare/" |
|
rsync -rv "./github.com/lucas-clemente/quic-go/vendor/github.com/marten-seemann/" "./github.com/marten-seemann/" |
|
rm -rf "./github.com/lucas-clemente/quic-go/vendor/" |
|
|
|
|
|
find . -name "*_test.go" -delete |
|
find . -name "*.yml" -delete |
|
find . -name "*.go" -type f -print0 | LC_ALL=C xargs -0 sed -i '' 's#\"github\.com#\"v2ray\.com/core/external/github\.com#g' |
|
|
|
popd
|
|
|