commands: Rename --path-warnings, --print-men to --printPathWarnings, --printMemoryUsage
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 15 Feb 2022 11:57:49 +0000 (12:57 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 15 Feb 2022 12:00:06 +0000 (13:00 +0100)
To get it in line with the others.

commands/commands.go
commands/commands_test.go
commands/hugo.go
docs/content/en/commands/hugo.md
docs/content/en/commands/hugo_mod.md
docs/content/en/commands/hugo_new.md
docs/content/en/commands/hugo_server.md

index 4d43f1126dce1ce4638a30f155e5cfbbce0cf60a..6d8149cb37b511dc0379694e723fdf4d0d82dcae 100644 (file)
@@ -305,10 +305,10 @@ func (cc *hugoBuilderCommon) handleFlags(cmd *cobra.Command) {
        cmd.Flags().BoolP("noTimes", "", false, "don't sync modification time of files")
        cmd.Flags().BoolP("noChmod", "", false, "don't sync permission mode of files")
        cmd.Flags().BoolP("i18n-warnings", "", false, "print missing translations")
-       cmd.Flags().BoolP("path-warnings", "", false, "print warnings on duplicate target paths etc.")
+       cmd.Flags().BoolP("printPathWarnings", "", false, "print warnings on duplicate target paths etc.")
        cmd.Flags().StringVarP(&cc.cpuprofile, "profile-cpu", "", "", "write cpu profile to `file`")
        cmd.Flags().StringVarP(&cc.memprofile, "profile-mem", "", "", "write memory profile to `file`")
-       cmd.Flags().BoolVarP(&cc.printm, "print-mem", "", false, "print memory usage to screen at intervals")
+       cmd.Flags().BoolVarP(&cc.printm, "printMemoryUsage", "", false, "print memory usage to screen at intervals")
        cmd.Flags().StringVarP(&cc.mutexprofile, "profile-mutex", "", "", "write Mutex profile to `file`")
        cmd.Flags().StringVarP(&cc.traceprofile, "trace", "", "", "write trace to `file` (not useful in general)")
 
index beb8175277330f6486d190dfc1c8cf39d95db0be..3bf2b2e96e649f8fed0e82a1a89d701964aedc2f 100644 (file)
@@ -196,7 +196,7 @@ func TestFlags(t *testing.T) {
                                "--port=1366",
                                "--renderToDisk",
                                "--source=mysource",
-                               "--path-warnings",
+                               "--printPathWarnings",
                        },
                        check: func(c *qt.C, sc *serverCmd) {
                                c.Assert(sc, qt.Not(qt.IsNil))
@@ -220,7 +220,7 @@ func TestFlags(t *testing.T) {
 
                                c.Assert(cfg.GetBool("gc"), qt.Equals, true)
 
-                               // The flag is named path-warnings
+                               // The flag is named printPathWarnings
                                c.Assert(cfg.GetBool("logPathWarnings"), qt.Equals, true)
 
                                // The flag is named i18n-warnings
index 7bfd1443aa88682d8227cf0134fffd490be53af5..1eac05ea162f1f66357dac88284b7ea83d8764f1 100644 (file)
@@ -244,7 +244,7 @@ func initializeFlags(cmd *cobra.Command, cfg config.Provider) {
        // Set some "config aliases"
        setValueFromFlag(cmd.Flags(), "destination", cfg, "publishDir", false)
        setValueFromFlag(cmd.Flags(), "i18n-warnings", cfg, "logI18nWarnings", false)
-       setValueFromFlag(cmd.Flags(), "path-warnings", cfg, "logPathWarnings", false)
+       setValueFromFlag(cmd.Flags(), "printPathWarnings", cfg, "logPathWarnings", false)
 }
 
 func setValueFromFlag(flags *flag.FlagSet, key string, cfg config.Provider, targetKey string, force bool) {
index 827bb89e6cbedb3ea8452887ba96b9cae70e4b38..3f459cbda4b2bc6f49a95ffa2b3197e96b63d475 100644 (file)
@@ -50,9 +50,9 @@ hugo [flags]
       --noChmod                    don't sync permission mode of files
       --noTimes                    don't sync modification time of files
       --panicOnWarning             panic on first WARNING log
-      --path-warnings              print warnings on duplicate target paths etc.
       --poll string                set this to a poll interval, e.g --poll 700ms, to use a poll based approach to watch for file system changes
-      --print-mem                  print memory usage to screen at intervals
+      --printMemoryUsage           print memory usage to screen at intervals
+      --printPathWarnings          print warnings on duplicate target paths etc.
       --quiet                      build in quiet mode
       --renderToMemory             render to memory (only useful for benchmark testing)
   -s, --source string              filesystem path to read files relative from
index 7b620cd3e5a7462cddc69b45fd1d70b7a432395b..6f5fdb3c9fa2149b0cd3b03784c6c0cddf2ed34f 100644 (file)
@@ -46,9 +46,9 @@ See https://gohugo.io/hugo-modules/ for more information.
       --noChmod                don't sync permission mode of files
       --noTimes                don't sync modification time of files
       --panicOnWarning         panic on first WARNING log
-      --path-warnings          print warnings on duplicate target paths etc.
       --poll string            set this to a poll interval, e.g --poll 700ms, to use a poll based approach to watch for file system changes
-      --print-mem              print memory usage to screen at intervals
+      --printMemoryUsage       print memory usage to screen at intervals
+      --printPathWarnings      print warnings on duplicate target paths etc.
       --templateMetrics        display metrics about template executions
       --templateMetricsHints   calculate some improvement hints when combined with --templateMetrics
   -t, --theme strings          themes to use (located in /themes/THEMENAME/)
index 018cd2af8df3155165ea026817ce380d4864a379..25b42820de944f035002e085f8bd79caaab4172f 100644 (file)
@@ -47,9 +47,9 @@ hugo new [path] [flags]
       --noChmod                don't sync permission mode of files
       --noTimes                don't sync modification time of files
       --panicOnWarning         panic on first WARNING log
-      --path-warnings          print warnings on duplicate target paths etc.
       --poll string            set this to a poll interval, e.g --poll 700ms, to use a poll based approach to watch for file system changes
-      --print-mem              print memory usage to screen at intervals
+      --printMemoryUsage       print memory usage to screen at intervals
+      --printPathWarnings      print warnings on duplicate target paths etc.
       --templateMetrics        display metrics about template executions
       --templateMetricsHints   calculate some improvement hints when combined with --templateMetrics
   -t, --theme strings          themes to use (located in /themes/THEMENAME/)
index 524340f8262e38ef0ed3d6d0a527b38eb5aff51b..f85faf5a897d39ec9724eebae8ec8b3539c54170 100644 (file)
@@ -59,10 +59,10 @@ hugo server [flags]
       --noHTTPCache            prevent HTTP caching
       --noTimes                don't sync modification time of files
       --panicOnWarning         panic on first WARNING log
-      --path-warnings          print warnings on duplicate target paths etc.
       --poll string            set this to a poll interval, e.g --poll 700ms, to use a poll based approach to watch for file system changes
   -p, --port int               port on which the server will listen (default 1313)
-      --print-mem              print memory usage to screen at intervals
+      --printMemoryUsage       print memory usage to screen at intervals
+      --printPathWarnings      print warnings on duplicate target paths etc.
       --renderToDisk           render to Destination path (default is render to memory & serve from there)
       --templateMetrics        display metrics about template executions
       --templateMetricsHints   calculate some improvement hints when combined with --templateMetrics