From 11feae19b76ce3bc4f4273a3c91ac361497aa473 Mon Sep 17 00:00:00 2001 From: utzb Date: Tue, 24 Oct 2017 10:26:35 +0200 Subject: [PATCH] chore(build-system): add support for linux s390x platform (#1316) s390x works fine (like other Linux architectures). --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 77271abe9..e8d603292 100755 --- a/build.sh +++ b/build.sh @@ -42,7 +42,7 @@ else if [ `echo "$@" | cut -c1-4` == 'echo' ]; then bash -c "$@"; else - build_all 'linux-amd64 linux-arm linux-arm64 linux-ppc64le darwin-amd64 windows-amd64' + build_all 'linux-amd64 linux-arm linux-arm64 linux-ppc64le linux-s390x darwin-amd64 windows-amd64' exit 0 fi fi