fs: make sure we load the options defaults to start with

This commit is contained in:
Nick Craig-Wood 2024-07-12 15:12:05 +01:00
parent 91558ce6aa
commit 532a0818f7

View File

@ -437,6 +437,17 @@ func RegisterGlobalOptions(oi OptionsInfo) {
log.Fatalf("%v", err)
}
}
// Load the default values into the options.
//
// These will be from the ultimate defaults or environment
// variables.
//
// The flags haven't been processed yet so this will be run
// again when the flags are ready.
err := oi.load()
if err != nil {
log.Fatalf("Failed to load %q default values: %v", oi.Name, err)
}
}
var optionName = regexp.MustCompile(`^[a-z0-9_]+$`)