blob: 5c76fe8474dd636310b81873f52dde05a99ff608 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package validate
import (
"github.com/containers/podman/v2/cmd/podman/registry"
"github.com/spf13/cobra"
)
func AddLatestFlag(cmd *cobra.Command, b *bool) {
// Initialization flag verification
cmd.Flags().BoolVarP(b, "latest", "l", false,
"Act on the latest container podman is aware of\nNot supported with the \"--remote\" flag")
if registry.IsRemote() {
_ = cmd.Flags().MarkHidden("latest")
}
}
|