mirror of
https://github.com/gohugoio/hugo.git
synced 2025-02-17 00:30:55 +00:00
Merge pull request #20 from VonC/version
Make sure hugo --version prints the version and does *nothing* else.
This commit is contained in:
commit
6a5e4b363a
1 changed files with 5 additions and 4 deletions
9
main.go
9
main.go
|
@ -60,6 +60,11 @@ func main() {
|
||||||
usage()
|
usage()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if *version {
|
||||||
|
fmt.Println("Hugo Static Site Generator v0.8")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
config := hugolib.SetupConfig(cfgfile, source)
|
config := hugolib.SetupConfig(cfgfile, source)
|
||||||
config.BuildDrafts = *draft
|
config.BuildDrafts = *draft
|
||||||
config.UglyUrls = *uglyUrls
|
config.UglyUrls = *uglyUrls
|
||||||
|
@ -75,10 +80,6 @@ func main() {
|
||||||
config.PublishDir = *destination
|
config.PublishDir = *destination
|
||||||
}
|
}
|
||||||
|
|
||||||
if *version {
|
|
||||||
fmt.Println("Hugo Static Site Generator v0.8")
|
|
||||||
}
|
|
||||||
|
|
||||||
if *cpuprofile != 0 {
|
if *cpuprofile != 0 {
|
||||||
f, err := os.Create("/tmp/hugo-cpuprofile")
|
f, err := os.Create("/tmp/hugo-cpuprofile")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue