Permit directory removal during static sync
authorSteve Francia <steve.francia@gmail.com>
Tue, 26 Jan 2016 19:11:22 +0000 (14:11 -0500)
committerSteve Francia <steve.francia@gmail.com>
Tue, 26 Jan 2016 19:33:56 +0000 (14:33 -0500)
commands/hugo.go

index 35acbf29011a9653772c3c19453f3bf698843a3f..1fd10728532f0a2d6a534c0538a75e07cd2bf90c 100644 (file)
@@ -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)