We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68115b5 commit ced724eCopy full SHA for ced724e
scripts/util/create-kubernetes-binaries-iso.sh
@@ -27,10 +27,10 @@ fi
27
ARCH="amd64"
28
ARCH_SUFFIX="x86_64"
29
if [ -n "${8}" ]; then
30
- if [ "${8}" = "x86_64" ]; then
+ if [ "${8}" = "x86_64" ] || [ "${8}" = "amd64" ]; then
31
32
33
- elif [ "${8}" = "aarch64" ]; then
+ elif [ "${8}" = "aarch64" ] || [ "${8}" = "arm64" ]; then
34
ARCH="arm64"
35
ARCH_SUFFIX="aarch64"
36
else
0 commit comments