diff options
author | Jhon Honce <jhonce@redhat.com> | 2020-08-03 15:41:25 -0700 |
---|---|---|
committer | Paul Holzinger <paul.holzinger@web.de> | 2020-08-30 12:11:19 +0200 |
commit | 33cf7aec51eec726544499189b20ee1395b9f513 (patch) | |
tree | fb1a06593e6fbb059eb919d575044bd92c1cdd57 /cmd | |
parent | 3ae1cd806c9125e48af08368e488ea39cd28256d (diff) | |
download | podman-33cf7aec51eec726544499189b20ee1395b9f513.tar.gz podman-33cf7aec51eec726544499189b20ee1395b9f513.tar.bz2 podman-33cf7aec51eec726544499189b20ee1395b9f513.zip |
Refactor parsing to not require --remote to be first
Use cobra.Command.FParseErrWhitelist to no longer require --remote to be
the first argument in flags when using CLI
Signed-off-by: Jhon Honce <jhonce@redhat.com>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/podman/registry/remote.go | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/cmd/podman/registry/remote.go b/cmd/podman/registry/remote.go index 006a1b900..57427f372 100644 --- a/cmd/podman/registry/remote.go +++ b/cmd/podman/registry/remote.go @@ -5,22 +5,24 @@ import ( "sync" "github.com/containers/libpod/v2/pkg/domain/entities" - "github.com/spf13/cobra" + "github.com/spf13/pflag" ) -var ( - // Was --remote given on command line - remoteOverride bool - remoteSync sync.Once -) +// Value for --remote given on command line +var remoteFromCLI = struct { + Value bool + sync sync.Once +}{} -// IsRemote returns true if podman was built to run remote +// IsRemote returns true if podman was built to run remote or --remote flag given on CLI // Use in init() functions as a initialization check func IsRemote() bool { - remoteSync.Do(func() { - remote := &cobra.Command{} - remote.Flags().BoolVarP(&remoteOverride, "remote", "r", false, "") - _ = remote.ParseFlags(os.Args) + remoteFromCLI.sync.Do(func() { + fs := pflag.NewFlagSet("remote", pflag.ContinueOnError) + fs.BoolVarP(&remoteFromCLI.Value, "remote", "r", false, "") + fs.ParseErrorsWhitelist.UnknownFlags = true + fs.SetInterspersed(false) + _ = fs.Parse(os.Args[1:]) }) - return podmanOptions.EngineMode == entities.TunnelMode || remoteOverride + return podmanOptions.EngineMode == entities.TunnelMode || remoteFromCLI.Value } |