URI: 
       commands: Fix case in names of some methods - hugo - [fork] hugo port for 9front
  HTML git clone git@git.drkhsh.at/hugo.git
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
   DIR commit 6fb4f048e130b877b31ba215a1437911c3f26f5c
   DIR parent be39ae5e117562c9c3975b9a5587e4b219bcac58
  HTML Author: bogem <albertnigma@gmail.com>
       Date:   Wed, 23 Nov 2016 12:40:50 +0100
       
       commands: Fix case in names of some methods
       
       Diffstat:
         M commands/benchmark.go               |       2 +-
         M commands/hugo.go                    |       6 +++---
       
       2 files changed, 4 insertions(+), 4 deletions(-)
       ---
   DIR diff --git a/commands/benchmark.go b/commands/benchmark.go
       @@ -79,7 +79,7 @@ func benchmark(cmd *cobra.Command, args []string) error {
        
                t := time.Now()
                for i := 0; i < benchmarkTimes; i++ {
       -                if err = resetAndbuildSites(false); err != nil {
       +                if err = resetAndBuildSites(false); err != nil {
                                return err
                        }
                }
   DIR diff --git a/commands/hugo.go b/commands/hugo.go
       @@ -425,7 +425,7 @@ func watchConfig() {
                viper.OnConfigChange(func(e fsnotify.Event) {
                        jww.FEEDBACK.Println("Config file changed:", e.Name)
                        // Force a full rebuild
       -                utils.CheckErr(reCreateAndbuildSites(true))
       +                utils.CheckErr(recreateAndBuildSites(true))
                        if !viper.GetBool("disableLiveReload") {
                                // Will block forever trying to write to a channel that nobody is reading if livereload isn't initialized
                                livereload.ForceRefresh()
       @@ -632,7 +632,7 @@ func getDirList() []string {
                return a
        }
        
       -func reCreateAndbuildSites(watching bool) (err error) {
       +func recreateAndBuildSites(watching bool) (err error) {
                if err := initSites(); err != nil {
                        return err
                }
       @@ -642,7 +642,7 @@ func reCreateAndbuildSites(watching bool) (err error) {
                return Hugo.Build(hugolib.BuildCfg{CreateSitesFromConfig: true, Watching: watching, PrintStats: !quiet})
        }
        
       -func resetAndbuildSites(watching bool) (err error) {
       +func resetAndBuildSites(watching bool) (err error) {
                if err := initSites(); err != nil {
                        return err
                }