Update scripts and fix build

This commit is contained in:
Netch
2021-07-16 06:00:50 +08:00
parent df76db1f07
commit 4f07cf20bf
24 changed files with 189 additions and 87 deletions

19
scripts/extract.ps1 Normal file
View File

@@ -0,0 +1,19 @@
param (
[string]
$name,
[string]
$address
)
try
{
Expand-Archive -Force -Path $name -DestinationPath $address
}
catch
{
Write-Host "Extract $name failed"
exit 1
}
exit 0