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