parent
3b210d648c
commit
cf86e93986
|
@ -476,9 +476,11 @@ pub fn serve(
|
||||||
if is_ignored_file(&site.config.ignored_content_globset, &path) {
|
if is_ignored_file(&site.config.ignored_content_globset, &path) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if is_temp_file(&path) || path.is_dir() {
|
|
||||||
|
if path.is_file() && is_temp_file(&path) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
// We only care about changes in non-empty folders
|
// We only care about changes in non-empty folders
|
||||||
if path.is_dir() && is_folder_empty(&path) {
|
if path.is_dir() && is_folder_empty(&path) {
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Reference in a new issue