We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad211ce commit eadb76eCopy full SHA for eadb76e
src/tools/replace-version-placeholder/src/main.rs
@@ -10,7 +10,12 @@ fn main() {
10
let version_str = t!(std::fs::read_to_string(&version_path), version_path);
11
let version_str = version_str.trim();
12
walk::walk_many(
13
- &[&root_path.join("compiler"), &root_path.join("library")],
+ &[
14
+ &root_path.join("compiler"),
15
+ &root_path.join("library"),
16
+ &root_path.join("src/doc/rustc"),
17
+ &root_path.join("src/doc/rustdoc"),
18
+ ],
19
|path, _is_dir| walk::filter_dirs(path),
20
&mut |entry, contents| {
21
if !contents.contains(VERSION_PLACEHOLDER) {
0 commit comments