weizhouapache commented on code in PR #10986: URL: https://github.com/apache/cloudstack/pull/10986#discussion_r2137674745
########## scripts/util/create-kubernetes-binaries-iso.sh: ########## @@ -25,11 +25,14 @@ if [ $# -lt 6 ]; then fi ARCH="amd64" +ARCH_SUFFIX="x86_64" if [ -n "${8}" ]; then if [ "${8}" = "x86_64" ]; then ARCH="amd64" + ARCH_SUFFIX="x86_64" elif [ "${8}" = "aarch64" ]; then Review Comment: ```suggestion elif [ "${8}" = "aarch64" ] || [ "${8}" = "arm64" ]; then ``` ########## scripts/util/create-kubernetes-binaries-iso.sh: ########## @@ -25,11 +25,14 @@ if [ $# -lt 6 ]; then fi ARCH="amd64" +ARCH_SUFFIX="x86_64" if [ -n "${8}" ]; then if [ "${8}" = "x86_64" ]; then Review Comment: ```suggestion if [ "${8}" = "x86_64" ] || [ "${8}" = "amd64" ]; then ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org