Skip to content

Commit f7b4877

Browse files
committed
Report errors instead of panic!()
1 parent 0b90e4e commit f7b4877

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

src/tools/linkchecker/main.rs

+11-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,17 @@ fn check(cache: &mut Cache,
192192
for part in Path::new(base).join(url).components() {
193193
match part {
194194
Component::Prefix(_) |
195-
Component::RootDir => panic!(),
195+
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+
}
196206
Component::CurDir => {}
197207
Component::ParentDir => { path.pop(); }
198208
Component::Normal(s) => { path.push(s); }

0 commit comments

Comments
 (0)