Sort and remove "" from "Available templates" list
authorAnthony Fok <foka@debian.org>
Mon, 7 Dec 2015 06:23:54 +0000 (23:23 -0700)
committerAnthony Fok <foka@debian.org>
Mon, 7 Dec 2015 06:23:54 +0000 (23:23 -0700)
hugolib/site.go

index eeac4cfb67fd8650fc4f727daf525d6fe3e1b4b6..e9bc1ca733f5b9364d4dd247dc42380f75d9fcbc 100644 (file)
@@ -22,6 +22,7 @@ import (
        "net/url"
        "os"
        "path/filepath"
+       "sort"
        "strconv"
        "strings"
        "sync"
@@ -243,14 +244,26 @@ func (s *Site) Build() (err error) {
        if err = s.Process(); err != nil {
                return
        }
+
        if err = s.Render(); err != nil {
                // Better reporting when the template is missing (commit 2bbecc7b)
-               jww.ERROR.Printf("Error rendering site: %s\nAvailable templates:\n", err)
+               jww.ERROR.Printf("Error rendering site: %s", err)
+
+               jww.ERROR.Printf("Available templates:")
+               var keys []string
                for _, template := range s.Tmpl.Templates() {
-                       jww.ERROR.Printf("\t%s\n", template.Name())
+                       if name := template.Name(); name != "" {
+                               keys = append(keys, name)
+                       }
                }
+               sort.Strings(keys)
+               for _, k := range keys {
+                       jww.ERROR.Printf("\t%s\n", k)
+               }
+
                return
        }
+
        return nil
 }