Code Monkey home page Code Monkey logo

Comments (8)

igm avatar igm commented on May 22, 2024

It seems it is more inconsistent than that. If "Before" is nil, "Action" does not have its name at index 0.
example main.go: http://play.golang.org/p/dKDdOWqL8S

$ go run main.go foo 1 2 3 4
Args in Before: [1 2 3 4]
Args in Action: [foo 1 2 3 4]

$ go run main.go bar 1 2 3 4
Args in Action: [1 2 3 4]

from cli.

fatih avatar fatih commented on May 22, 2024

Confirmed, setting the "Before" function disables argument parsing of my defined flags. I removed Before functions completely.

from cli.

codegangsta avatar codegangsta commented on May 22, 2024

This is definitely a bug. Thanks for the report

from cli.

ghigt avatar ghigt commented on May 22, 2024

This bug is due to these lines (#L211):

// Run default Action
if len(a.Commands) > 0 {
    a.Action(context)
} else {
    a.Action(ctx)
}

@codegangsta, I think we should remove this if statement. It is apparently not necessary.

EDIT: There is already a discussion about this issue in the responsible commit.

from cli.

jszwedko avatar jszwedko commented on May 22, 2024

Addressed by #170

from cli.

cvik avatar cvik commented on May 22, 2024

Great, just found this bug as well and can confirm it. My research also found the lines above by ghigt.

The Ctx context haven't yet parsed the flags for the subcommand, but context context has and that one is used by the Before action, which makes it look like it works for Before, but not Action of the subcommand.

Any ETA when a fix can be merged to master?

from cli.

jszwedko avatar jszwedko commented on May 22, 2024

@rawn merged in today, let me know if your issue persists.

from cli.

cvik avatar cvik commented on May 22, 2024

@jszwedko Works beautifully!

from cli.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.