Let people edit their index.md

Closes #241
This commit is contained in:
Vincent Prouillet 2018-02-25 19:29:46 +01:00
parent 972687fd76
commit 5c56278be1

View file

@ -291,7 +291,7 @@ pub fn after_content_change(site: &mut Site, path: &Path) -> Result<()> {
}
// Added another .md in a assets directory
if index.exists() && path.exists() {
if index.exists() && path.exists() && path != index {
bail!(
"Change on {:?} detected but there is already an `index.md` in the same folder",
path.display()