spiegel_podman/cmd/podman/images/version.go
Brent Baude 2e6f29a2df
RUN-4538: Fix buildah vendoring
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>
2026-04-21 14:27:58 -05:00

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
}