diff options
author | Aaron Clauson <aaron@sipsorcery.com> | 2019-07-31 10:00:02 +0200 |
---|---|---|
committer | Aaron Clauson <aaron@sipsorcery.com> | 2019-07-31 10:00:02 +0200 |
commit | 0646ca5ea2541d4da324d9aff7de422c6daa0ef9 (patch) | |
tree | 47ac7c91ab4454897950c73f9286767c3114df0e | |
parent | 8241b5150431247bc87624804454b1ab8490138c (diff) |
Changes the verbosity of msbuild from quiet to normal in the appveyor script. Increasing the verbosity helps to identify the cause of build errors which is the main purpose of the appveyor script.
-rw-r--r-- | .appveyor.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 0a644992dd..ac17e2eeb6 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -33,7 +33,7 @@ before_build: - ps: Start-Process clcache-server - ps: fsutil behavior set disablelastaccess 0 # Enable Access time feature on Windows (for clcache) build_script: -- cmd: msbuild /p:TrackFileAccess=false /p:CLToolExe=clcache.exe build_msvc\bitcoin.sln /m /v:q /nologo +- cmd: msbuild /p:TrackFileAccess=false /p:CLToolExe=clcache.exe build_msvc\bitcoin.sln /m /v:n /nologo after_build: - ps: fsutil behavior set disablelastaccess 1 # Disable Access time feature on Windows (better performance) - ps: clcache -z |