mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-29 11:52:10 -05:00
parent
7610844004
commit
45c69dd168
1 changed files with 3 additions and 1 deletions
|
@ -278,7 +278,9 @@ func init() {
|
||||||
|
|
||||||
// InitializeConfig initializes a config file with sensible default configuration flags.
|
// InitializeConfig initializes a config file with sensible default configuration flags.
|
||||||
func InitializeConfig(subCmdVs ...*cobra.Command) error {
|
func InitializeConfig(subCmdVs ...*cobra.Command) error {
|
||||||
hugolib.LoadGlobalConfig(source, cfgFile)
|
if err := hugolib.LoadGlobalConfig(source, cfgFile); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
for _, cmdV := range append([]*cobra.Command{hugoCmdV}, subCmdVs...) {
|
for _, cmdV := range append([]*cobra.Command{hugoCmdV}, subCmdVs...) {
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue