Any program, when asks to print their version, only prints that, and then
stops.
hugo checks the config (and prints a warning message if not found), and
proceeds to generate the site!
Yet, the user just wanted to check the version.
This patch makes sure hugo stops after printing the version.
usage()
}
+ if *version {
+ fmt.Println("Hugo Static Site Generator v0.8")
+ return
+ }
+
config := hugolib.SetupConfig(cfgfile, source)
config.BuildDrafts = *draft
config.UglyUrls = *uglyUrls
config.PublishDir = *destination
}
- if *version {
- fmt.Println("Hugo Static Site Generator v0.8")
- }
-
if *cpuprofile != 0 {
f, err := os.Create("/tmp/hugo-cpuprofile")