Adding version number to command line options
authorspf13 <steve.francia@gmail.com>
Tue, 9 Jul 2013 02:27:23 +0000 (22:27 -0400)
committerspf13 <steve.francia@gmail.com>
Tue, 9 Jul 2013 02:27:23 +0000 (22:27 -0400)
main.go

diff --git a/main.go b/main.go
index 3f4b6f96812fae2c1ba2f387704aacae60f908a8..857b8874507bd157a7467ead758ba882eb7e35fb 100644 (file)
--- a/main.go
+++ b/main.go
@@ -37,6 +37,7 @@ var (
        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")
@@ -65,6 +66,10 @@ func main() {
                config.BaseUrl = *baseUrl
        }
 
+       if *version {
+               fmt.Println("Hugo Static Site Generator v0.8")
+       }
+
        if *cpuprofile != 0 {
                f, err := os.Create("/tmp/hugo-cpuprofile")