The crash was introduced by commit
00d04774 in PR #1652
where access to NoTimes was attempted even though --noTimes
was not defined for the config, check and benchmark commands.
Special thanks to @bep for the heads-up!
See also #1624 - CLI UX: Flags shouldn't be global
if cmdV.Flags().Lookup("ignoreCache").Changed {
viper.Set("IgnoreCache", IgnoreCache)
}
- if cmdV.Flags().Lookup("noTimes").Changed {
- viper.Set("NoTimes", NoTimes)
- }
+ }
+
+ if hugoCmdV.Flags().Lookup("noTimes").Changed {
+ viper.Set("NoTimes", NoTimes)
}
if BaseURL != "" {
viper.Set("PublishDir", "/")
}
+ if serverCmd.Flags().Lookup("noTimes").Changed {
+ viper.Set("NoTimes", NoTimes)
+ }
+
if err := build(serverWatch); err != nil {
return err
}