mirror of https://github.com/docker/cli.git
Add riscv64 to manifest annotation and bash completion
Signed-off-by: Carlos de Paula <me@carlosedp.com>
This commit is contained in:
parent
016a323216
commit
41aa20b6b5
|
@ -35,6 +35,7 @@ var validOSArches = map[osArch]bool{
|
||||||
{os: "linux", arch: "ppc64le"}: true,
|
{os: "linux", arch: "ppc64le"}: true,
|
||||||
{os: "linux", arch: "mips64"}: true,
|
{os: "linux", arch: "mips64"}: true,
|
||||||
{os: "linux", arch: "mips64le"}: true,
|
{os: "linux", arch: "mips64le"}: true,
|
||||||
|
{os: "linux", arch: "riscv64"}: true,
|
||||||
{os: "linux", arch: "s390x"}: true,
|
{os: "linux", arch: "s390x"}: true,
|
||||||
{os: "netbsd", arch: "386"}: true,
|
{os: "netbsd", arch: "386"}: true,
|
||||||
{os: "netbsd", arch: "amd64"}: true,
|
{os: "netbsd", arch: "amd64"}: true,
|
||||||
|
|
|
@ -4186,6 +4186,7 @@ _docker_manifest_annotate() {
|
||||||
mips64
|
mips64
|
||||||
mips64le
|
mips64le
|
||||||
ppc64le
|
ppc64le
|
||||||
|
riscv64
|
||||||
s390x" -- "$cur" ) )
|
s390x" -- "$cur" ) )
|
||||||
return
|
return
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Reference in New Issue