fix(linux): only reh for ppc64le [skip ci]

This commit is contained in:
Baptiste Augrain 2023-06-13 20:39:59 +02:00
parent 272566cc25
commit 08114ab943

View file

@ -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