Sfoglia il codice sorgente

Different exception than I expected

default_compile_flags
vector-of-bool 5 anni fa
parent
commit
5ef5c84225
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      tools/build.py

+ 1
- 1
tools/build.py Vedi File

@@ -44,7 +44,7 @@ def have_ccache() -> bool:
try:
subprocess.check_output(['ccache', '--version'])
return True
except subprocess.CalledProcessError:
except FileNotFoundError:
return False



Loading…
Annulla
Salva