Skip to content

Commit

Permalink
Remove help/usage from --remote pre-check
Browse files Browse the repository at this point in the history
--remote pre-check was providing usage context, which was also being
provided by the root podman command.

Fixes containers#7273

Signed-off-by: Jhon Honce <[email protected]>
  • Loading branch information
jwhonce committed Aug 18, 2020
1 parent 748e882 commit 3c1c55c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions cmd/podman/registry/remote.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,14 @@ var remoteFromCLI = struct {
}{}

// IsRemote returns true if podman was built to run remote or --remote flag given on CLI
// Use in init() functions as a initialization check
// Use in init() functions as an initialization check
func IsRemote() bool {
remoteFromCLI.sync.Do(func() {
fs := pflag.NewFlagSet("remote", pflag.ContinueOnError)
fs.BoolVarP(&remoteFromCLI.Value, "remote", "r", false, "")
fs.ParseErrorsWhitelist.UnknownFlags = true
fs.Usage = func() {}
fs.SetInterspersed(false)
fs.BoolVarP(&remoteFromCLI.Value, "remote", "r", false, "")
_ = fs.Parse(os.Args[1:])
})
return podmanOptions.EngineMode == entities.TunnelMode || remoteFromCLI.Value
Expand Down

0 comments on commit 3c1c55c

Please sign in to comment.