From f10c7fcb9e28244301ff4b36c517e53ab5115eee Mon Sep 17 00:00:00 2001 From: Guanyc Date: Tue, 3 Jan 2017 00:45:22 +0800 Subject: [PATCH] fix --- download.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/download.ps1 b/download.ps1 index 522f64c..44d7226 100644 --- a/download.ps1 +++ b/download.ps1 @@ -18,7 +18,7 @@ Expand-Archive -Path $filename -DestinationPath $expdir -Force $mdir = Join-Path $expdir $movedir; Write-Host "Move Files $expdir to $desdir ."; -robocopy "$expdir" "$desdir" /E +robocopy "$mdir" "$desdir" /E Write-Host "Delete Files $expdir ."; Remove-Item $expdir -Recurse -Force;