mirror of
https://github.com/netchx/netch.git
synced 2026-05-11 23:45:06 +08:00
15 lines
351 B
PowerShell
15 lines
351 B
PowerShell
Set-Location (Split-Path $MyInvocation.MyCommand.Path -Parent)
|
|
|
|
git clone https://github.com/shadowsocksrr/shadowsocksr-libev -b 'Akkariiin/develop' src
|
|
if ( -Not $? ) {
|
|
exit $lastExitCode
|
|
}
|
|
Set-Location src
|
|
|
|
msys2 ..\build.sh
|
|
if ( -Not $? ) {
|
|
exit $lastExitCode
|
|
}
|
|
|
|
cp -Force '.\ss-local.exe' '..\..\release\ssr-local.exe'
|
|
exit 0 |