dearchap

Results 201 comments of dearchap

@lburgazzoli I have a draft PR which fixes this issue if you are interested in testing out. Thanks

In general we cant have it both ways, if SkipFlagParsing is false the behaviour is as expected. If SkipFlagParsing is set to true then output is ``` uuid: [] --uuid...

Verified this behaviour using a unit test. Yes the bug is in the golang flag library. Until we replace that with our own parsing dont think its an easy fix.

@krostar so the "easiest" way to fix is to allow SkipFlagParsing at the level at which the args shouldnt be parsed and this will allow you to capture all the...

Documentation has been corrected to reflect actual behavior

Looking into submitting a PR for this.

This behaviour is not present in v2 ``` package main import ( "fmt" "log" "os" "github.com/urfave/cli/v2" ) func main() { app := cli.NewApp() app.Name = "myprogramname" app.Action = func(c *cli.Context)...