From 08114ab9430f899fc8d2a05c0b775aa4af97d6f3 Mon Sep 17 00:00:00 2001 From: Baptiste Augrain Date: Tue, 13 Jun 2023 20:39:59 +0200 Subject: [PATCH] fix(linux): only reh for ppc64le [skip ci] --- check_tags.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/check_tags.sh b/check_tags.sh index 138fd2c..9ef4d90 100755 --- a/check_tags.sh +++ b/check_tags.sh @@ -344,7 +344,12 @@ if [ "${ASSETS}" != "null" ]; then fi else if [[ "${OS_NAME}" == "linux" ]]; then - if [[ "${VSCODE_ARCH}" != "x64" ]]; then + if [[ "${VSCODE_ARCH}" == "ppc64le" ]]; then + SHOULD_BUILD_DEB="no" + SHOULD_BUILD_APPIMAGE="no" + SHOULD_BUILD_RPM="no" + SHOULD_BUILD_TAR="no" + elif [[ "${VSCODE_ARCH}" != "x64" ]]; then export SHOULD_BUILD_APPIMAGE="no" fi elif [[ "${OS_NAME}" == "osx" ]]; then