diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-04-08 01:19:38 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-04-08 01:19:38 +0200 |
commit | 7872739d3c1d02e68982ac2e6767f6233e515637 (patch) | |
tree | e6b36924fa39106d4f335546b049e33cf866f649 | |
parent | 02aa57afa543b295777335e0f462b814fe33b69a (diff) | |
download | rneovim-7872739d3c1d02e68982ac2e6767f6233e515637.tar.gz rneovim-7872739d3c1d02e68982ac2e6767f6233e515637.tar.bz2 rneovim-7872739d3c1d02e68982ac2e6767f6233e515637.zip |
CI/AppVeyor: print info about restored cache
-rw-r--r-- | ci/build.ps1 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ci/build.ps1 b/ci/build.ps1 index ea1acfac00..4f2b748284 100644 --- a/ci/build.ps1 +++ b/ci/build.ps1 @@ -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') { |