URI: 
       Fix deprecation notice - 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 159120cddda176a46246b0b60cc37701644eafd4
   DIR parent 3f0d49e5025b630779bb14ab977e5e14e962a695
  HTML Author: Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
       Date:   Sat, 11 Dec 2021 11:54:28 +0100
       
       Fix deprecation notice
       
       Asterisks needs to be quoted on command line.
       
       Diffstat:
         M hugolib/config.go                   |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/hugolib/config.go b/hugolib/config.go
       @@ -110,7 +110,7 @@ func LoadConfig(d ConfigSourceDescriptor, doWithConfig ...func(cfg config.Provid
                // Config deprecations.
                // We made this a Glob pattern in Hugo 0.75, we don't need both.
                if l.cfg.GetBool("ignoreVendor") {
       -                helpers.Deprecated("--ignoreVendor", "--ignoreVendorPaths **", true)
       +                helpers.Deprecated("--ignoreVendor", "Use --ignoreVendorPaths \"**\"", true)
                        l.cfg.Set("ignoreVendorPaths", "**")
                }