URI: 
       Capital J in Jekyll - 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 ac1e3c3cc09785609354228ab0cc5e10e8061bba
   DIR parent 0387deee03efdf2f1cdd9a1fa857e715cc24d0b5
  HTML Author: Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
       Date:   Sun,  4 Oct 2015 23:26:18 +0200
       
       Capital J in Jekyll
       
       Diffstat:
         M commands/import.go                  |      14 +++++++-------
       
       1 file changed, 7 insertions(+), 7 deletions(-)
       ---
   DIR diff --git a/commands/import.go b/commands/import.go
       @@ -42,7 +42,7 @@ func init() {
        var importCmd = &cobra.Command{
                Use:   "import",
                Short: "import from others",
       -        Long: `import from others like jekyll.
       +        Long: `import from others like Jekyll.
        
        Import requires a subcommand, e.g. ` + "`hugo import jekyll jekyll_root_path target_path`.",
                Run: nil,
       @@ -50,10 +50,10 @@ Import requires a subcommand, e.g. ` + "`hugo import jekyll jekyll_root_path tar
        
        var importJekyllCmd = &cobra.Command{
                Use:   "jekyll",
       -        Short: "hugo import from jekyll",
       -        Long: `hugo import from jekyll.
       +        Short: "hugo import from Jekyll",
       +        Long: `hugo import from Jekyll.
        
       -Import jekyll requires two path, e.g. ` + "`hugo import jekyll jekyll_root_path target_path`.",
       +Import from Jekyll requires two paths, e.g. ` + "`hugo import jekyll jekyll_root_path target_path`.",
                Run: importFromJekyll,
        }
        
       @@ -62,7 +62,7 @@ func importFromJekyll(cmd *cobra.Command, args []string) {
                jww.SetStdoutThreshold(jww.LevelWarn)
        
                if len(args) < 2 {
       -                jww.ERROR.Println(`Import jekyll requires two path, e.g. ` + "`hugo import jekyll jekyll_root_path target_path`.")
       +                jww.ERROR.Println(`Import from Jekyll requires two paths, e.g. ` + "`hugo import jekyll jekyll_root_path target_path`.")
                        return
                }
        
       @@ -80,7 +80,7 @@ func importFromJekyll(cmd *cobra.Command, args []string) {
        
                createSiteFromJekyll(jekyllRoot, targetDir)
        
       -        jww.INFO.Println("Import jekyll from:", jekyllRoot, "to:", targetDir)
       +        jww.INFO.Println("Import Jekyll from:", jekyllRoot, "to:", targetDir)
                fmt.Println("Importing...")
        
                fileCount := 0
       @@ -122,7 +122,7 @@ func importFromJekyll(cmd *cobra.Command, args []string) {
                        fmt.Println(err)
                } else {
                        fmt.Println("Congratulations!", fileCount, "posts imported!")
       -                fmt.Println("Now, start hugo by yourself: \n" +
       +                fmt.Println("Now, start Hugo by yourself: \n" +
                                "$ git clone https://github.com/spf13/herring-cove.git " + args[1] + "/themes/herring-cove")
                        fmt.Println("$ cd " + args[1] + "\n$ hugo server -w --theme=herring-cove")
                }