From b0b4b821651c7fa2866816ced0c1a1a52ca094ed Mon Sep 17 00:00:00 2001 From: Steve Francia Date: Tue, 26 Jan 2016 14:11:22 -0500 Subject: [PATCH] Permit directory removal during static sync --- commands/hugo.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/hugo.go b/commands/hugo.go index 35acbf290..1fd107285 100644 --- a/commands/hugo.go +++ b/commands/hugo.go @@ -776,7 +776,7 @@ func NewWatcher(port int) error { // 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)