lang: core: embedded: provisioner: Version flag needs a unique name

Conflicts with the stock --version.
This commit is contained in:
James Shubin
2024-05-23 07:57:30 -04:00
parent 415e22abe2
commit 3c661ab674

View File

@@ -108,7 +108,7 @@ type localArgs struct {
Distro string `arg:"--distro" default:"fedora" help:"distribution to use" func:"cli_distro"` Distro string `arg:"--distro" default:"fedora" help:"distribution to use" func:"cli_distro"`
// Version is the distribution version. This is a string, not an int. // Version is the distribution version. This is a string, not an int.
Version string `arg:"--version" help:"distribution version" func:"cli_version"` // eg: "38" Version string `arg:"--dversion" help:"distribution version" func:"cli_version"` // eg: "38"
// Arch is the distro architecture to use. Only x86_64 and aarch64 are // Arch is the distro architecture to use. Only x86_64 and aarch64 are
// currently supported. Patches welcome. // currently supported. Patches welcome.