Build cloak

This commit is contained in:
Netch
2021-09-12 23:13:58 +08:00
parent c686315ee0
commit ac3fd71477
3 changed files with 21 additions and 16 deletions

View File

@@ -1,16 +0,0 @@
param (
[string]
$OutputPath
)
try {
Invoke-WebRequest `
-Uri 'https://github.com/cbeuw/Cloak/releases/download/v2.5.5/ck-client-windows-amd64-v2.5.5.exe' `
-OutFile 'ck-client.exe'
}
catch {
exit 1
}
mv -Force 'ck-client.exe' $OutputPath
exit 0