mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-05 00:15:44 +00:00
This PR reflects the upstream change of moving the buildah module from github.com/containers/buildah to go.podman.io/buildah. Signed-off-by: Brent Baude <bbaude@redhat.com>
35 lines
824 B
Go
35 lines
824 B
Go
package images
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/containers/podman/v6/cmd/podman/registry"
|
|
"github.com/containers/podman/v6/cmd/podman/validate"
|
|
"github.com/spf13/cobra"
|
|
"go.podman.io/buildah/define"
|
|
"go.podman.io/common/pkg/completion"
|
|
)
|
|
|
|
var (
|
|
versionDescription = `Print build version`
|
|
versionCmd = &cobra.Command{
|
|
Use: "version",
|
|
Args: validate.NoArgs,
|
|
Short: "Print build version",
|
|
Long: versionDescription,
|
|
RunE: version,
|
|
ValidArgsFunction: completion.AutocompleteNone,
|
|
}
|
|
)
|
|
|
|
func init() {
|
|
registry.Commands = append(registry.Commands, registry.CliCommand{
|
|
Command: versionCmd,
|
|
Parent: buildxCmd,
|
|
})
|
|
}
|
|
|
|
func version(_ *cobra.Command, _ []string) error {
|
|
fmt.Printf("%s %s\n", define.Package, define.Version)
|
|
return nil
|
|
}
|