mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 00:13:49 +01:00
fs: make sure we load the options defaults to start with
This commit is contained in:
parent
91558ce6aa
commit
532a0818f7
@ -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_]+$`)
|
||||
|
Loading…
Reference in New Issue
Block a user