Skip to content

Commit

Permalink
Exclude s390x as arch-specific tag (#1553)
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Kravec <[email protected]>
  • Loading branch information
kravciak authored Feb 14, 2025
1 parent c569517 commit 3b03590
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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

0 comments on commit 3b03590

Please sign in to comment.