File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -148,8 +148,7 @@ test_script:
148148 - sh src/ci/run.sh
149149
150150on_failure :
151- - cat %CD%\sccache.log
152- - cat C:\Users\appveyor\AppData\Local\Temp\1\build-cache-logs\*.log
151+ - cat %CD%\sccache.log || exit 0
153152
154153cache :
155154 - C:\cache\rustsrc
Original file line number Diff line number Diff line change @@ -41,6 +41,8 @@ if [ ! -f "$cache_valid_file" ]; then
4141 rm -rf " $CACHE_DIR "
4242 mkdir " $CACHE_DIR "
4343else
44+ # Ignore errors while gathering information about the possible brokenness
45+ # of the git repo since our gathered info will tell us something is wrong
4446 set +o errexit
4547 stat_lines=$( cd " $cache_src_dir " && git status --porcelain | wc -l)
4648 stat_ec=$( cd " $cache_src_dir " && git status > /dev/null 2>&1 ; echo $? )
You can’t perform that action at this time.
0 commit comments