Terminate the stripping of flags when -- is found (#649)

This commit is contained in:
Di Xu 2018-03-19 14:20:04 +08:00 committed by Albert Nigmatzianov
parent c6c44e6fdc
commit c439c4fa09

View file

@ -475,6 +475,9 @@ Loop:
s := args[0]
args = args[1:]
switch {
case s == "--":
// "--" terminates the flags
break Loop
case strings.HasPrefix(s, "--") && !strings.Contains(s, "=") && !hasNoOptDefVal(s[2:], flags):
// If '--flag arg' then
// delete arg from args.