copying static content to destination
authorspf13 <steve.francia@gmail.com>
Tue, 30 Jul 2013 05:26:02 +0000 (01:26 -0400)
committerspf13 <steve.francia@gmail.com>
Tue, 30 Jul 2013 05:26:02 +0000 (01:26 -0400)
main.go

diff --git a/main.go b/main.go
index f99357c1f217c0a6dde19b148a9622ed63ecd0a1..2a7585242c81664f310ef7c498c76420ba486cf0 100644 (file)
--- a/main.go
+++ b/main.go
@@ -16,8 +16,10 @@ package main
 import (
        "fmt"
        "github.com/howeyc/fsnotify"
+       "github.com/mostafah/fsync"
        flag "github.com/ogier/pflag"
        "github.com/spf13/hugo/hugolib"
+       "log"
        "net/http"
        "os"
        "path/filepath"
@@ -63,16 +65,16 @@ func main() {
        config.UglyUrls = *uglyUrls
        config.Verbose = *verbose
 
-       if *destination != "" {
-               config.PublishDir = *destination
-       }
-
        if *baseUrl != "" {
                config.BaseUrl = *baseUrl
        } else if *server {
                config.BaseUrl = "http://localhost:" + *port
        }
 
+       if *destination != "" {
+               config.PublishDir = *destination
+       }
+
        if *version {
                fmt.Println("Hugo Static Site Generator v0.8")
        }
@@ -92,6 +94,12 @@ func main() {
                }
        }
 
+       // Copy Static to Destination first
+       err := fsync.SyncDel(config.GetAbsPath(config.PublishDir+"/"), config.GetAbsPath(config.StaticDir+"/"))
+       if err != nil {
+               log.Fatalf("Error copying static files to %s: %v", config.GetAbsPath(config.PublishDir), err)
+       }
+
        if *checkMode {
                site := hugolib.NewSite(config)
                site.Analyze()