mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
Enabling Nitro ('--stepAnalysis') again. Fix #58
This commit is contained in:
parent
18f2b82658
commit
dcfcbac589
2 changed files with 7 additions and 1 deletions
|
@ -19,6 +19,7 @@ import (
|
|||
"github.com/mostafah/fsync"
|
||||
"github.com/spf13/cobra"
|
||||
"github.com/spf13/hugo/hugolib"
|
||||
"github.com/spf13/nitro"
|
||||
"log"
|
||||
"os"
|
||||
"path/filepath"
|
||||
|
@ -66,6 +67,7 @@ func init() {
|
|||
HugoCmd.PersistentFlags().BoolVar(&UglyUrls, "uglyurls", false, "if true, use /filename.html instead of /filename/")
|
||||
HugoCmd.PersistentFlags().StringVarP(&BaseUrl, "base-url", "b", "", "hostname (and path) to the root eg. http://spf13.com/")
|
||||
HugoCmd.PersistentFlags().StringVar(&CfgFile, "config", "", "config file (default is path/config.yaml|json|toml)")
|
||||
HugoCmd.PersistentFlags().BoolVar(&nitro.AnalysisOn, "stepAnalysis", false, "display memory and timing of different steps of the program")
|
||||
HugoCmd.Flags().BoolVarP(&BuildWatch, "watch", "w", false, "watch filesystem for changes and recreate as needed")
|
||||
}
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ import (
|
|||
"time"
|
||||
)
|
||||
|
||||
var DefaultTimer = nitro.Initalize()
|
||||
var DefaultTimer *nitro.B
|
||||
|
||||
func MakePermalink(base *url.URL, path *url.URL) *url.URL {
|
||||
return base.ResolveReference(path)
|
||||
|
@ -78,6 +78,10 @@ type SiteInfo struct {
|
|||
Config *Config
|
||||
}
|
||||
|
||||
func init() {
|
||||
DefaultTimer = nitro.Initalize()
|
||||
}
|
||||
|
||||
func (s *Site) timerStep(step string) {
|
||||
if s.timer == nil {
|
||||
s.timer = DefaultTimer
|
||||
|
|
Loading…
Reference in a new issue