1
Fork 0

don't rebuild alloc_jemalloc if jemalloc's .git directory has changed

the .git directory is modified by `bootstrap` when it updates this git
submodule; this triggered rebuilds every time `bootstrap` was called.

likely fixes #38094
This commit is contained in:
Jorge Aparicio 2016-12-01 13:17:01 -05:00
parent ecff71a45c
commit acad8cceb7

View file

@ -69,6 +69,7 @@ fn main() {
.read_dir()
.unwrap()
.map(|e| e.unwrap())
.filter(|e| &*e.file_name() != ".git")
.collect::<Vec<_>>();
while let Some(entry) = stack.pop() {
let path = entry.path();