Skip to content

Commit 7f28d91

Browse files
committed
ci: fix again -usecache regression on macos
1 parent 0248349 commit 7f28d91

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

vlib/v/util/util.v

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ const (
3939
const builtin_module_names = ['builtin', 'strconv', 'strings', 'dlmalloc']
4040

4141
pub fn module_is_builtin(mod string) bool {
42-
return mod in util.builtin_module_parts
42+
// NOTE: using util.builtin_module_parts here breaks -usecache on macos
43+
return mod in util.builtin_module_names
4344
}
4445

4546
pub fn tabs(n int) string {

0 commit comments

Comments
 (0)