Skip to content

Commit da22db6

Browse files
committed
fix CI fails hopefully
1 parent 7b5111a commit da22db6

File tree

1 file changed

+2
-2
lines changed
  • src/tools/unstable-book-gen/src

1 file changed

+2
-2
lines changed

src/tools/unstable-book-gen/src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,11 +124,11 @@ fn main() {
124124
let dest_path = Path::new(&dest_path_str);
125125

126126
let lang_features = collect_lang_features(compiler_path, &mut RunningCheck::new_noop());
127-
let lib_features = collect_lib_features(library_path)
127+
let lib_features = collect_lib_features(library_path, None)
128128
.into_iter()
129129
.filter(|&(ref name, _)| !lang_features.contains_key(name))
130130
.collect();
131-
let env_vars = collect_env_vars(compiler_path);
131+
let env_vars = collect_env_vars(compiler_path, None);
132132

133133
let doc_src_path = src_path.join(PATH_STR);
134134

0 commit comments

Comments
 (0)