Add asset list in file not name index.md error message

This commit is contained in:
Vincent Prouillet 2017-04-25 12:00:42 +09:00
parent 33951ffe70
commit 74be6d9c15

View file

@ -180,7 +180,7 @@ impl Page {
page.assets = find_related_assets(path.parent().unwrap());
if !page.assets.is_empty() && page.file_name != "index" {
bail!("Page `{}` has assets but is not named index.md", path.display());
bail!("Page `{}` has assets ({:?}) but is not named index.md", path.display(), page.assets);
}
Ok(page)