Files
netch/Other/simple-obfs/build.ps1
2022-03-22 14:20:23 +08:00

15 lines
323 B
PowerShell

Set-Location (Split-Path $MyInvocation.MyCommand.Path -Parent)
git clone https://github.com/shadowsocks/simple-obfs src
if ( -Not $? ) {
exit $lastExitCode
}
Set-Location src
msys2 ..\build.sh
if ( -Not $? ) {
exit $lastExitCode
}
cp -Force '.\obfs-local.exe' '..\..\release\simple-obfs.exe'
exit 0