CI/AppVeyor: print info about restored cache

This commit is contained in:
Justin M. Keyes 2019-04-08 01:19:38 +02:00
parent 02aa57afa5
commit 7872739d3c
1 changed files with 3 additions and 1 deletions

View File

@ -26,8 +26,10 @@ function exitIfFailed() {
}
if (-Not (Test-Path -PathType container $nvimCmakeVars["DEPS_BUILD_DIR"])) {
write-host "cache not restored (deps dir not found): $($nvimCmakeVars['DEPS_BUILD_DIR'])"
write-host "cache dir not found: $($nvimCmakeVars['DEPS_BUILD_DIR'])"
mkdir $nvimCmakeVars["DEPS_BUILD_DIR"]
} else {
write-host "cache dir ($nvimCmakeVars['DEPS_BUILD_DIR']) size: $(Get-ChildItem $nvimCmakeVars['DEPS_BUILD_DIR'] -recurse | Measure-Object -property length -sum | Select -expand sum)"
}
if ($compiler -eq 'MINGW') {