Improve some random feedback messages
authorAnthony Fok <foka@debian.org>
Thu, 17 Dec 2015 03:41:33 +0000 (20:41 -0700)
committerAnthony Fok <foka@debian.org>
Thu, 17 Dec 2015 04:26:51 +0000 (21:26 -0700)
Also clean up a couple random comments.

commands/hugo.go
commands/new.go
commands/server.go
create/content.go

index 5bf40bbbe01e3f64fd1fb3b5d55baa5f7c1f63ed..ef3df9d71a5729efcab7a6e890f5345ff82bd64b 100644 (file)
@@ -11,8 +11,8 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-//Package commands defines and implements command-line commands and flags used by Hugo. Commands and flags are implemented using
-//cobra.
+// Package commands defines and implements command-line commands and flags
+// used by Hugo. Commands and flags are implemented using Cobra.
 package commands
 
 import (
index 0eb87dac3673347c10744adc05757c272022e3a3..a30c9f55b975b7aedada052bea04a98c0f8dba8a 100644 (file)
@@ -144,10 +144,12 @@ func doNewSite(basepath string, force bool) error {
 
        createConfig(basepath, configFormat)
 
+       jww.FEEDBACK.Printf("Congratulations! Your new Hugo site is created in %q.\n", basepath)
+
        return nil
 }
 
-// NewSite creates a new hugo site and initializes a structured Hugo directory.
+// NewSite creates a new Hugo site and initializes a structured Hugo directory.
 func NewSite(cmd *cobra.Command, args []string) error {
        if len(args) < 1 {
                return newUserError("path needs to be provided")
@@ -161,7 +163,6 @@ func NewSite(cmd *cobra.Command, args []string) error {
        forceNew, _ := cmd.Flags().GetBool("force")
 
        return doNewSite(createpath, forceNew)
-
 }
 
 // NewTheme creates a new Hugo theme.
@@ -176,7 +177,7 @@ func NewTheme(cmd *cobra.Command, args []string) error {
        }
 
        createpath := helpers.AbsPathify(filepath.Join("themes", args[0]))
-       jww.INFO.Println("creating theme at", createpath)
+       jww.INFO.Println("Creating theme at", createpath)
 
        if x, _ := helpers.Exists(createpath, hugofs.SourceFs); x {
                return newUserError(createpath, "already exists")
index 064c846b6ed7e5c6525e72ad5d1e87945af44392..3e41a14b42e05306b82f6c0db63b85819e4d87c3 100644 (file)
@@ -166,7 +166,7 @@ func server(cmd *cobra.Command, args []string) error {
 
                rootWatchDirs := strings.Join(helpers.UniqueStrings(helpers.ExtractRootPaths(watchDirs)), ",")
 
-               jww.FEEDBACK.Printf("Watching for changes in %s/{%s}\n", baseWatchDir, rootWatchDirs)
+               jww.FEEDBACK.Printf("Watching for changes in %s%s{%s}\n", baseWatchDir, helpers.FilePathSeparator, rootWatchDirs)
                err := NewWatcher(serverPort)
 
                if err != nil {
index e56c5c95196d9e792a809dc9f95179b529eff3ec..3607e0139b8a6645b32552b40797e5a793731f7b 100644 (file)
@@ -113,7 +113,7 @@ func NewContent(kind, name string) (err error) {
        editor := viper.GetString("NewContentEditor")
 
        if editor != "" {
-               jww.FEEDBACK.Printf("Editing %s in %s.\n", name, editor)
+               jww.FEEDBACK.Printf("Editing %s with %q ...\n", name, editor)
 
                cmd := exec.Command(editor, helpers.AbsPathify(path.Join(viper.GetString("contentDir"), name)))
                cmd.Stdin = os.Stdin