scripts/build-binary: Added s390x support for binary release

This commit is contained in:
Nirman Narang
2019-11-13 04:10:46 -08:00
parent 63dd73c186
commit cabf5942b2
2 changed files with 3 additions and 1 deletions

View File

@@ -70,6 +70,7 @@ function main {
if [ ${GOOS} == "linux" ]; then
TARGET_ARCHS+=("arm64")
TARGET_ARCHS+=("ppc64le")
TARGET_ARCHS+=("s390x")
fi
for TARGET_ARCH in "${TARGET_ARCHS[@]}"; do