mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
15 lines
322 B
PowerShell
15 lines
322 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\obfs-local.exe'
|
|
exit 0 |