We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b90e4e commit f7b4877Copy full SHA for f7b4877
src/tools/linkchecker/main.rs
@@ -192,7 +192,17 @@ fn check(cache: &mut Cache,
192
for part in Path::new(base).join(url).components() {
193
match part {
194
Component::Prefix(_) |
195
- Component::RootDir => panic!(),
+ Component::RootDir => {
196
+ // Avoid absolute paths as they make the docs not
197
+ // relocatable by making assumptions on where the docs
198
+ // are hosted relative to the site root.
199
+ *errors = true;
200
+ println!("{}:{}: absolute path - {}",
201
+ pretty_file.display(),
202
+ i + 1,
203
+ Path::new(base).join(url).display());
204
+ return;
205
+ }
206
Component::CurDir => {}
207
Component::ParentDir => { path.pop(); }
208
Component::Normal(s) => { path.push(s); }
0 commit comments