shithub: hugo

Download patch

ref: b0b4b821651c7fa2866816ced0c1a1a52ca094ed
parent: db18fd1582a7f7b1697629219d7a31dc92f829b2
author: Steve Francia <[email protected]>
date: Tue Jan 26 09:11:22 EST 2016

Permit directory removal during static sync

--- a/commands/hugo.go
+++ b/commands/hugo.go
@@ -776,7 +776,7 @@
 									// If file doesn't exist in any static dir, remove it
 									toRemove :=filepath.Join(publishDir, relPath)
 									jww.FEEDBACK.Println("File no longer exists in static dir, removing", toRemove)
-									hugofs.DestinationFS.Remove(toRemove)
+									hugofs.DestinationFS.RemoveAll(toRemove)
 								} else if err == nil {
 									// If file still exists, sync it
 									jww.FEEDBACK.Println("Syncing", relPath, "to", publishDir)