mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
parent
ce7c267140
commit
ad176055d9
2 changed files with 13 additions and 11 deletions
|
@ -14,9 +14,10 @@
|
|||
package commands
|
||||
|
||||
import (
|
||||
"github.com/spf13/cobra"
|
||||
"os"
|
||||
"runtime/pprof"
|
||||
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
var (
|
||||
|
@ -56,7 +57,7 @@ func benchmark(cmd *cobra.Command, args []string) error {
|
|||
return err
|
||||
}
|
||||
for i := 0; i < benchmarkTimes; i++ {
|
||||
mainSite = nil
|
||||
MainSite = nil
|
||||
_ = buildSite()
|
||||
}
|
||||
pprof.WriteHeapProfile(f)
|
||||
|
@ -75,7 +76,7 @@ func benchmark(cmd *cobra.Command, args []string) error {
|
|||
pprof.StartCPUProfile(f)
|
||||
defer pprof.StopCPUProfile()
|
||||
for i := 0; i < benchmarkTimes; i++ {
|
||||
mainSite = nil
|
||||
MainSite = nil
|
||||
_ = buildSite()
|
||||
}
|
||||
}
|
||||
|
|
|
@ -46,7 +46,7 @@ import (
|
|||
"gopkg.in/fsnotify.v1"
|
||||
)
|
||||
|
||||
var mainSite *hugolib.Site
|
||||
var MainSite *hugolib.Site
|
||||
|
||||
// userError is an error used to signal different error situations in command handling.
|
||||
type commandError struct {
|
||||
|
@ -648,18 +648,19 @@ func getDirList() []string {
|
|||
}
|
||||
|
||||
func buildSite(watching ...bool) (err error) {
|
||||
fmt.Println("Started building site")
|
||||
startTime := time.Now()
|
||||
if mainSite == nil {
|
||||
mainSite = new(hugolib.Site)
|
||||
if MainSite == nil {
|
||||
MainSite = new(hugolib.Site)
|
||||
}
|
||||
if len(watching) > 0 && watching[0] {
|
||||
mainSite.RunMode.Watching = true
|
||||
MainSite.RunMode.Watching = true
|
||||
}
|
||||
err = mainSite.Build()
|
||||
err = MainSite.Build()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
mainSite.Stats()
|
||||
MainSite.Stats()
|
||||
jww.FEEDBACK.Printf("in %v ms\n", int(1000*time.Since(startTime).Seconds()))
|
||||
|
||||
return nil
|
||||
|
@ -667,11 +668,11 @@ func buildSite(watching ...bool) (err error) {
|
|||
|
||||
func rebuildSite(events []fsnotify.Event) error {
|
||||
startTime := time.Now()
|
||||
err := mainSite.ReBuild(events)
|
||||
err := MainSite.ReBuild(events)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
mainSite.Stats()
|
||||
MainSite.Stats()
|
||||
jww.FEEDBACK.Printf("in %v ms\n", int(1000*time.Since(startTime).Seconds()))
|
||||
|
||||
return nil
|
||||
|
|
Loading…
Reference in a new issue