diff --git a/CHANGELOG.md b/CHANGELOG.md index 7741f6e..4a6dd86 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,6 +34,7 @@ sections up to the index to be used with the `get_section` Tera function - Add `relative_path` to pages and sections in templates - Do not have a trailing slash for the RSS permalinks - `serve` will now try to find other ports than 1111 rather than panicking +- Ensure content directory exists before rendering aliases ## 0.4.2 (2018-09-03) diff --git a/components/site/tests/site.rs b/components/site/tests/site.rs index afbc245..215715c 100644 --- a/components/site/tests/site.rs +++ b/components/site/tests/site.rs @@ -202,7 +202,7 @@ fn can_build_site_with_live_reload() { let tmp_dir = tempdir().expect("create temp dir"); let public = &tmp_dir.path().join("public"); site.set_output_path(&public); - site.enable_live_reload(); + site.enable_live_reload(1000); site.build().unwrap(); assert!(Path::new(&public).exists());