shithub: hugo

Download patch

ref: aee48725eb81feb62d86bdc0521387f142c9c3a0
parent: d2a6267ad7664be33363bbe9e0502beca8f2c56d
author: spf13 <[email protected]>
date: Mon Jul 8 18:27:23 EDT 2013

Adding version number to command line options

--- a/main.go
+++ b/main.go
@@ -37,6 +37,7 @@
 	help       = flag.Bool("h", false, "show this help")
 	path       = flag.String("p", "", "filesystem path to read files relative from")
 	verbose    = flag.Bool("v", false, "verbose output")
+	version    = flag.Bool("version", false, "which version of hugo")
 	cpuprofile = flag.Int("cpuprofile", 0, "Number of times to create the site and profile it")
 	watchMode  = flag.Bool("w", false, "watch filesystem for changes and recreate as needed")
 	server     = flag.Bool("s", false, "run a (very) simple web server")
@@ -63,6 +64,10 @@
 
 	if *baseUrl != "" {
 		config.BaseUrl = *baseUrl
+	}
+
+	if *version {
+		fmt.Println("Hugo Static Site Generator v0.8")
 	}
 
 	if *cpuprofile != 0 {