Skip to content

Commit 3b03590

Browse files
authored
Exclude s390x as arch-specific tag (#1553)
Signed-off-by: Martin Kravec <kravciak@gmail.com>
1 parent c569517 commit 3b03590

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cmd/root.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ func NewCmdVersionLs() *cobra.Command {
384384
}
385385

386386
cmd.Flags().StringVarP(&flags.includeRegexp, "include", "i", ".*", "Include Regexp (default includes everything")
387-
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)")
387+
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)")
388388
cmd.Flags().StringVarP(&flags.format, "format", "f", string(VersionLsOutputFormatRaw), "[DEPRECATED] Use --output instead")
389389
cmd.Flags().StringVarP(&flags.outputFormat, "output", "o", string(VersionLsOutputFormatRaw), "Output Format [raw | repo]")
390390
cmd.MarkFlagsMutuallyExclusive("format", "output")

docs/usage/commands/k3d_version_list.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ k3d version list COMPONENT [flags]
99
### Options
1010

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

0 commit comments

Comments
 (0)