mirror of https://github.com/v2ray/v2ray-core
				
				
				
			
		
			
				
	
	
		
			26 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
			
		
		
	
	
			26 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
| #!/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
 |