mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
14 lines
383 B
PowerShell
14 lines
383 B
PowerShell
$name="data.zip"
|
|
$address="https://github.com/netchx/netch-data/archive/refs/heads/main.zip"
|
|
|
|
..\scripts\download.ps1 $name $address
|
|
if (-Not $?) { exit $lastExitCode }
|
|
|
|
..\scripts\extract.ps1 $name "bin"
|
|
if (-Not $?) { exit $lastExitCode }
|
|
|
|
Copy-Item -Recurse -Force .\netch-data-main\* .\bin
|
|
|
|
Remove-Item -Force $name
|
|
Remove-Item -Recurse -Force netch-data-main
|
|
exit 0 |