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"
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")
}
}
}
+ // 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()