Giter Club home page Giter Club logo

Comments (6)

chirino avatar chirino commented on May 23, 2024

This is basically reopening #692 since that was closed due to folks not understanding what persistent flags are. They are NOT about "saving a flag that was set in the previous invocation of the cli".

from cli.

chirino avatar chirino commented on May 23, 2024

Some might think you can just use common flags on the root command and sub commands to get this to work, but sadly it does not. The following test currently fails:

package test

import (
	"github.com/urfave/cli/v2"
	"testing"
)

func TestCommonFlags(t *testing.T) {

	commonFlags := []cli.Flag{
		&cli.StringFlag{
			Name: "result",
		},
	}

	result := ""
	app := &cli.App{
		Name:  "root",
		Flags: commonFlags,
		Commands: []*cli.Command{
			{
				Name:  "sub",
				Flags: commonFlags,
				Action: func(ctx *cli.Context) error {
					result = ctx.String("result")
					return nil
				},
			},
		},
	}

	if err := app.Run([]string{"root", "sub", "--result", "after"}); err != nil {
		t.Fatal(err)
	}
	if result != "after" {
		t.Fatalf("result is not after")
	}

	if err := app.Run([]string{"root", "--result", "before", "sub"}); err != nil {
		t.Fatal(err)
	}
	if result != "before" {
		t.Fatalf("result is not before")
	}

}

from cli.

dearchap avatar dearchap commented on May 23, 2024

@chirino Support for persistent flags was added in v3. Please try with that. You can mark a flag explicitly as persistent in which case it will be allowed in subcommands as well.

from cli.

dearchap avatar dearchap commented on May 23, 2024

@chirino I am closing this for now. If you see any problems with persistent flags in v3 we can create a new issue

from cli.

chirino avatar chirino commented on May 23, 2024

Thanks! I Tested v3 out and it's working nice.

from cli.

chirino avatar chirino commented on May 23, 2024

Well mostly working.. found this bug: #1826

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.