Make sure hugo --version prints the version and does *nothing* else.
authorVonC <vonc@laposte.net>
Thu, 8 Aug 2013 20:18:37 +0000 (22:18 +0200)
committerVonC <vonc@laposte.net>
Thu, 8 Aug 2013 20:21:56 +0000 (22:21 +0200)
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.

main.go

diff --git a/main.go b/main.go
index 692db431d95155189a28181ad0a0db7101b0016f..8b91bee86aca33bd70b07feb83109024ba676786 100644 (file)
--- a/main.go
+++ b/main.go
@@ -60,6 +60,11 @@ func main() {
                usage()
        }
 
+       if *version {
+               fmt.Println("Hugo Static Site Generator v0.8")
+               return
+       }
+
        config := hugolib.SetupConfig(cfgfile, source)
        config.BuildDrafts = *draft
        config.UglyUrls = *uglyUrls
@@ -75,10 +80,6 @@ func main() {
                config.PublishDir = *destination
        }
 
-       if *version {
-               fmt.Println("Hugo Static Site Generator v0.8")
-       }
-
        if *cpuprofile != 0 {
                f, err := os.Create("/tmp/hugo-cpuprofile")