Copy static folders after processing images when building
This commit is contained in:
parent
cb962f7a64
commit
76dc62ac49
|
@ -607,8 +607,6 @@ impl Site {
|
||||||
self.compile_sass(&self.base_path)?;
|
self.compile_sass(&self.base_path)?;
|
||||||
}
|
}
|
||||||
|
|
||||||
self.copy_static_directories()?;
|
|
||||||
|
|
||||||
if self.config.build_search_index {
|
if self.config.build_search_index {
|
||||||
self.build_search_index()?;
|
self.build_search_index()?;
|
||||||
}
|
}
|
||||||
|
@ -649,6 +647,8 @@ impl Site {
|
||||||
// We process images at the end as we might have picked up images to process from markdown
|
// We process images at the end as we might have picked up images to process from markdown
|
||||||
// or from templates
|
// or from templates
|
||||||
self.process_images()?;
|
self.process_images()?;
|
||||||
|
// Processed images will be in static so the last step is to copy it
|
||||||
|
self.copy_static_directories()?;
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue