Skip to content
This repository was archived by the owner on Jan 15, 2026. It is now read-only.
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
2 changes: 1 addition & 1 deletion cmd/oci-image-tool/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ var createCommand = cli.Command{
cli.StringFlag{
Name: "type",
Usage: fmt.Sprintf(
`Type of the file to unpack. If unset, oci-image-tool-validate will try to auto-detect the type. One of "%s".`,
`Type of the file to unpack. If unset, oci-image-tool will try to auto-detect the type. One of "%s".`,
strings.Join(bundleTypes, ","),
),
},
Expand Down
2 changes: 1 addition & 1 deletion cmd/oci-image-tool/unpack.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ var unpackCommand = cli.Command{
cli.StringFlag{
Name: "type",
Usage: fmt.Sprintf(
`Type of the file to unpack. If unset, oci-image-tool-validate will try to auto-detect the type. One of "%s".`,
`Type of the file to unpack. If unset, oci-image-tool will try to auto-detect the type. One of "%s".`,
strings.Join(unpackTypes, ","),
),
},
Expand Down
2 changes: 1 addition & 1 deletion cmd/oci-image-tool/validate.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ var validateCommand = cli.Command{
cli.StringFlag{
Name: "type",
Usage: fmt.Sprintf(
`Type of the file to validate. If unset, oci-image-tool-validate will try to auto-detect the type. One of "%s".`,
`Type of the file to validate. If unset, oci-image-tool will try to auto-detect the type. One of "%s".`,
strings.Join(validateTypes, ","),
),
},
Expand Down