Merge commit 'd0aeb4d' into v3-porting
This commit is contained in:
commit
c6318ceaf8
3
app.go
3
app.go
@ -116,6 +116,8 @@ type App struct {
|
||||
// Allows global flags set by libraries which use flag.XXXVar(...) directly
|
||||
// to be parsed through this library
|
||||
AllowExtFlags bool
|
||||
// Treat all flags as normal arguments if true
|
||||
SkipFlagParsing bool
|
||||
|
||||
didSetup bool
|
||||
|
||||
@ -283,6 +285,7 @@ func (a *App) newRootCommand() *Command {
|
||||
HelpName: a.HelpName,
|
||||
CustomHelpTemplate: a.CustomAppHelpTemplate,
|
||||
categories: a.categories,
|
||||
SkipFlagParsing: a.SkipFlagParsing,
|
||||
isRoot: true,
|
||||
}
|
||||
}
|
||||
|
18
app_test.go
18
app_test.go
@ -813,6 +813,24 @@ func TestApp_CommandWithNoFlagBeforeTerminator(t *testing.T) {
|
||||
expect(t, args.Get(2), "notAFlagAtAll")
|
||||
}
|
||||
|
||||
func TestApp_SkipFlagParsing(t *testing.T) {
|
||||
var args Args
|
||||
|
||||
app := &App{
|
||||
SkipFlagParsing: true,
|
||||
Action: func(c *Context) error {
|
||||
args = c.Args()
|
||||
return nil
|
||||
},
|
||||
}
|
||||
|
||||
_ = app.Run([]string{"", "--", "my-arg", "notAFlagAtAll"})
|
||||
|
||||
expect(t, args.Get(0), "--")
|
||||
expect(t, args.Get(1), "my-arg")
|
||||
expect(t, args.Get(2), "notAFlagAtAll")
|
||||
}
|
||||
|
||||
func TestApp_VisibleCommands(t *testing.T) {
|
||||
app := &App{
|
||||
Commands: []*Command{
|
||||
|
@ -325,6 +325,8 @@ type App struct {
|
||||
// Allows global flags set by libraries which use flag.XXXVar(...) directly
|
||||
// to be parsed through this library
|
||||
AllowExtFlags bool
|
||||
// Treat all flags as normal arguments if true
|
||||
SkipFlagParsing bool
|
||||
|
||||
// Has unexported fields.
|
||||
}
|
||||
|
2
testdata/godoc-v2.x.txt
vendored
2
testdata/godoc-v2.x.txt
vendored
@ -325,6 +325,8 @@ type App struct {
|
||||
// Allows global flags set by libraries which use flag.XXXVar(...) directly
|
||||
// to be parsed through this library
|
||||
AllowExtFlags bool
|
||||
// Treat all flags as normal arguments if true
|
||||
SkipFlagParsing bool
|
||||
|
||||
// Has unexported fields.
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user