Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorspf13 <steve.francia@gmail.com>2013-07-27 02:06:13 +0400
committerspf13 <steve.francia@gmail.com>2013-07-27 02:06:13 +0400
commit7ab28c564f89b32fd1a3db78a34db14587f54cad (patch)
treef906ffd9377131fd774e5ea5f10e7421641b826a /main.go
parent92c31bbe10a68bb29c62535f5a7a6b4bfc80a21d (diff)
Adding support for destination dir, split out static
Diffstat (limited to 'main.go')
-rw-r--r--main.go35
1 files changed, 20 insertions, 15 deletions
diff --git a/main.go b/main.go
index 52e48f2e0..f99357c1f 100644
--- a/main.go
+++ b/main.go
@@ -27,19 +27,20 @@ import (
)
var (
- baseUrl = flag.StringP("base-url", "b", "", "hostname (and path) to the root eg. http://spf13.com/")
- cfgfile = flag.String("config", "", "config file (default is path/config.yaml|json|toml)")
- checkMode = flag.Bool("check", false, "analyze content and provide feedback")
- draft = flag.BoolP("build-drafts", "d", false, "include content marked as draft")
- help = flag.BoolP("help", "h", false, "show this help")
- path = flag.StringP("source", "s", "", "filesystem path to read files relative from")
- verbose = flag.BoolP("verbose", "v", false, "verbose output")
- version = flag.Bool("version", false, "which version of hugo")
- cpuprofile = flag.Int("profile", 0, "Number of times to create the site and profile it")
- watchMode = flag.BoolP("watch", "w", false, "watch filesystem for changes and recreate as needed")
- server = flag.BoolP("server", "S", false, "run a (very) simple web server")
- port = flag.String("port", "1313", "port to run web server on, default :1313")
- uglyUrls = flag.Bool("uglyurls", false, "use /filename.html instead of /filename/ ")
+ baseUrl = flag.StringP("base-url", "b", "", "hostname (and path) to the root eg. http://spf13.com/")
+ cfgfile = flag.String("config", "", "config file (default is path/config.yaml|json|toml)")
+ checkMode = flag.Bool("check", false, "analyze content and provide feedback")
+ draft = flag.BoolP("build-drafts", "D", false, "include content marked as draft")
+ help = flag.BoolP("help", "h", false, "show this help")
+ source = flag.StringP("source", "s", "", "filesystem path to read files relative from")
+ destination = flag.StringP("destination", "d", "", "filesystem path to write files to")
+ verbose = flag.BoolP("verbose", "v", false, "verbose output")
+ version = flag.Bool("version", false, "which version of hugo")
+ cpuprofile = flag.Int("profile", 0, "Number of times to create the site and profile it")
+ watchMode = flag.BoolP("watch", "w", false, "watch filesystem for changes and recreate as needed")
+ server = flag.BoolP("server", "S", false, "run a (very) simple web server")
+ port = flag.String("port", "1313", "port to run web server on, default :1313")
+ uglyUrls = flag.Bool("uglyurls", false, "use /filename.html instead of /filename/ ")
)
func usage() {
@@ -57,11 +58,15 @@ func main() {
usage()
}
- config := hugolib.SetupConfig(cfgfile, path)
+ config := hugolib.SetupConfig(cfgfile, source)
config.BuildDrafts = *draft
config.UglyUrls = *uglyUrls
config.Verbose = *verbose
+ if *destination != "" {
+ config.PublishDir = *destination
+ }
+
if *baseUrl != "" {
config.BaseUrl = *baseUrl
} else if *server {
@@ -194,7 +199,7 @@ func getDirList(c *hugolib.Config) []string {
return nil
}
- filepath.Walk(c.GetAbsPath(c.SourceDir), walker)
+ filepath.Walk(c.GetAbsPath(c.ContentDir), walker)
filepath.Walk(c.GetAbsPath(c.LayoutDir), walker)
return a