Files
netch/Other/v2ray-plugin/build.ps1
Connection Refused 220c58600e [Other] Update scripts
2021-09-26 21:29:54 +08:00

15 lines
404 B
PowerShell

Set-Location (Split-Path $MyInvocation.MyCommand.Path -Parent)
git clone https://github.com/teddysun/v2ray-plugin -b 'v4.42.2' src
if ( -Not $? ) {
exit $lastExitCode
}
Set-Location src
$Env:CGO_ENABLED='0'
$Env:GOROOT_FINAL='/usr'
$Env:GOOS='windows'
$Env:GOARCH='amd64'
go build -a -trimpath -asmflags '-s -w' -ldflags '-s -w' -o '..\..\release\v2ray-plugin.exe'
exit $lastExitCode