Skip to content

Commit 01b9912

Browse files
author
OpenShift Bot
authored
Merge pull request #12919 from tdawson/2017-02-fix-multiarch-typo
Merged by openshift-bot
2 parents 15e6cf4 + 722109b commit 01b9912

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

hack/build-cross.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ if [[ "${host_platform}" == "linux/ppc64le" ]]; then
2828
platforms+=( "linux/ppc64le" )
2929
fi
3030

31-
# Special case aarch64
31+
# Special case arm64
3232
if [[ "${host_platform}" == "linux/arm64" ]]; then
3333
platforms+=( "linux/arm64" )
3434
fi

hack/common.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ function os::build::place_bins() {
362362
elif [[ $platform == "linux-powerpc64" ]]; then
363363
OS_RELEASE_ARCHIVE="openshift-origin-client-tools" os::build::archive_tar "${OS_BINARY_RELEASE_CLIENT_LINUX[@]}"
364364
OS_RELEASE_ARCHIVE="openshift-origin-server" os::build::archive_tar "${OS_BINARY_RELEASE_SERVER_LINUX[@]}"
365-
elif [[ $platform == "linux-aarch64" ]]; then
365+
elif [[ $platform == "linux-arm64" ]]; then
366366
OS_RELEASE_ARCHIVE="openshift-origin-client-tools" os::build::archive_tar "${OS_BINARY_RELEASE_CLIENT_LINUX[@]}"
367367
OS_RELEASE_ARCHIVE="openshift-origin-server" os::build::archive_tar "${OS_BINARY_RELEASE_SERVER_LINUX[@]}"
368368
elif [[ $platform == "linux-s390" ]]; then
@@ -372,7 +372,7 @@ function os::build::place_bins() {
372372
echo "++ ERROR: No release type defined for $platform"
373373
fi
374374
else
375-
if [[ $platform == "linux-64bit" || $platform == "linux-powerpc64" || $platform == "linux-aarch64" || $platform == "linux-s390" ]]; then
375+
if [[ $platform == "linux-64bit" || $platform == "linux-powerpc64" || $platform == "linux-arm64" || $platform == "linux-s390" ]]; then
376376
os::build::archive_tar "./*"
377377
else
378378
echo "++ ERROR: No release type defined for $platform"

0 commit comments

Comments
 (0)