ci: fix again -usecache regression on macos

pull/13827/head
Delyan Angelov 2022-03-26 09:47:44 +02:00
parent 0248349e7c
commit 7f28d91190
1 changed files with 2 additions and 1 deletions

View File

@ -39,7 +39,8 @@ const (
const builtin_module_names = ['builtin', 'strconv', 'strings', 'dlmalloc']
pub fn module_is_builtin(mod string) bool {
return mod in util.builtin_module_parts
// NOTE: using util.builtin_module_parts here breaks -usecache on macos
return mod in util.builtin_module_names
}
pub fn tabs(n int) string {