From fcff53517b1a38b875129ba1c57d44690e41917c Mon Sep 17 00:00:00 2001 From: Gator96100 Date: Mon, 5 Oct 2020 17:54:39 +0200 Subject: [PATCH] Copy cache --- appveyor.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index e849d670b..5331c1472 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -176,7 +176,9 @@ install: Write-Host "ProxSpace: move cache..." -NoNewLine - Move-Item -Path "$env:proxspace_cache_path" -Destination "$env:proxspace_path\msys2\var\cache" -Force -ErrorAction SilentlyContinue + New-Item -ItemType Directory -Force -Path "$env:proxspace_path\msys2\var\cache\" + + Copy-Item -Path "$env:proxspace_cache_path\*" -Destination "$env:proxspace_path\msys2\var\cache\" -Force -Recurse -ErrorAction SilentlyContinue Write-Host "[ OK ]" -ForegroundColor Gree