From e2f6a58fdee31f1b7846214cf30fe6b85de90a64 Mon Sep 17 00:00:00 2001 From: Connection Refused Date: Fri, 2 Apr 2021 08:50:22 +0800 Subject: [PATCH] Update download.ps1 --- download.ps1 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/download.ps1 b/download.ps1 index 4a4c5efc..d12227ab 100644 --- a/download.ps1 +++ b/download.ps1 @@ -2,7 +2,7 @@ param([string]$OutputPath) $NetchDataURL="https://github.com/NetchX/NetchData/archive/refs/heads/master.zip" $NetchModeURL="https://github.com/NetchX/NetchMode/archive/refs/heads/master.zip" -$NetchI18NURL="https://github.com/NetchX/NetchTranslation/archive/refs/heads/master.zip" +$NetchI18NURL="https://github.com/NetchX/NetchI18N/archive/refs/heads/master.zip" $last=$(Get-Location) New-Item -ItemType Directory -Name $OutputPath | Out-Null @@ -20,13 +20,13 @@ New-Item -ItemType Directory -Name bin | Out-Null New-Item -ItemType Directory -Name mode | Out-Null New-Item -ItemType Directory -Name i18n | Out-Null -Copy-Item -Recurse -Force .\NetchData-master\* .\bin -Copy-Item -Recurse -Force .\NetchMode-master\mode\* .\mode -Copy-Item -Recurse -Force .\NetchTranslation-master\i18n\* .\i18n +Copy-Item -Recurse -Force .\NetchData-master\* .\bin +Copy-Item -Recurse -Force .\NetchMode-master\mode\* .\mode +Copy-Item -Recurse -Force .\NetchI18N-master\i18n\* .\i18n Remove-Item -Recurse -Force NetchData-master Remove-Item -Recurse -Force NetchMode-master -Remove-Item -Recurse -Force NetchTranslation-master +Remove-Item -Recurse -Force NetchI18N-master Remove-Item -Force data.zip Remove-Item -Force mode.zip Remove-Item -Force i18n.zip