Merge pull request #1851 from bingoohuang/master

fix bug to use env with prefix WEED_ in configuration files which simply the boringly long command line arguments
This commit is contained in:
Chris Lu
2021-02-28 18:04:54 -08:00
committed by GitHub

View File

@@ -995,6 +995,7 @@ func NewFlagSet(name string, errorHandling ErrorHandling) *FlagSet {
f := &FlagSet{
name: name,
errorHandling: errorHandling,
envPrefix: EnvPrefix,
}
return f
}