blob: 8937074b58840e0a75a277da5c6ed253ef80fccf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package validate
import (
"github.com/containers/podman/v3/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")
}
}
|