From 7844c183e77611b6ea5a24197c4f87a68be02824 Mon Sep 17 00:00:00 2001 From: Connection Refused Date: Fri, 28 May 2021 23:10:56 +0800 Subject: [PATCH] Update download.ps1 --- scripts/download.ps1 | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/scripts/download.ps1 b/scripts/download.ps1 index 41b43aab..17f108ce 100644 --- a/scripts/download.ps1 +++ b/scripts/download.ps1 @@ -1,8 +1,8 @@ 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/NetchI18N/archive/refs/heads/master.zip" +$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/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 .\NetchI18N-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 NetchI18N-master +Remove-Item -Recurse -Force netchdata-master +Remove-Item -Recurse -Force netchmode-master +Remove-Item -Recurse -Force netchi18n-master Remove-Item -Force data.zip Remove-Item -Force mode.zip Remove-Item -Force i18n.zip