mirror of
https://github.com/moby/moby.git
synced 2026-08-05 07:30:57 +00:00
prevent flag grouping with --
Docker-DCO-1.1-Signed-off-by: Victor Vieux <victor.vieux@docker.com> (github: vieux)
This commit is contained in:
@@ -772,6 +772,9 @@ func (f *FlagSet) parseOne() (bool, string, error) {
|
||||
f.usage()
|
||||
return false, "", ErrHelp
|
||||
}
|
||||
if len(name) > 0 && name[0] == '-' {
|
||||
return false, "", f.failf("flag provided but not defined: -%s", name)
|
||||
}
|
||||
return false, name, ErrRetry
|
||||
}
|
||||
if fv, ok := flag.Value.(boolFlag); ok && fv.IsBoolFlag() { // special case: doesn't need an arg
|
||||
|
||||
Reference in New Issue
Block a user