Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Exclude s390x as arch-specific tag from version list #1553

Merged
merged 1 commit into from
Feb 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Exclude s390x as arch-specific tag
Signed-off-by: Martin Kravec <kravciak@gmail.com>
  • Loading branch information
kravciak committed Feb 13, 2025
commit 9acee6ae74367e72d1c3ad194d52880ddddeb3f5
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ func NewCmdVersionLs() *cobra.Command {
}

cmd.Flags().StringVarP(&flags.includeRegexp, "include", "i", ".*", "Include Regexp (default includes everything")
cmd.Flags().StringVarP(&flags.excludeRegexp, "exclude", "e", ".+(rc|engine|alpha|beta|dev|test|arm|arm64|amd64).*", "Exclude Regexp (default excludes pre-releases and arch-specific tags)")
cmd.Flags().StringVarP(&flags.excludeRegexp, "exclude", "e", ".+(rc|engine|alpha|beta|dev|test|arm|arm64|amd64|s390x).*", "Exclude Regexp (default excludes pre-releases and arch-specific tags)")
cmd.Flags().StringVarP(&flags.format, "format", "f", string(VersionLsOutputFormatRaw), "[DEPRECATED] Use --output instead")
cmd.Flags().StringVarP(&flags.outputFormat, "output", "o", string(VersionLsOutputFormatRaw), "Output Format [raw | repo]")
cmd.MarkFlagsMutuallyExclusive("format", "output")
Expand Down
2 changes: 1 addition & 1 deletion docs/usage/commands/k3d_version_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ k3d version list COMPONENT [flags]
### Options

```
-e, --exclude string Exclude Regexp (default excludes pre-releases and arch-specific tags) (default ".+(rc|engine|alpha|beta|dev|test|arm|arm64|amd64).*")
-e, --exclude string Exclude Regexp (default excludes pre-releases and arch-specific tags) (default ".+(rc|engine|alpha|beta|dev|test|arm|arm64|amd64|s390x).*")
-f, --format string [DEPRECATED] Use --output instead (default "raw")
-h, --help help for list
-i, --include string Include Regexp (default includes everything (default ".*")
Expand Down
Loading