From 676da62a7fdc03b74533af6c27531ba6f407e89b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bojan=20=C4=8Cekrli=C4=87?= Date: Sat, 1 Mar 2025 18:37:21 +0100 Subject: [PATCH] Fix: Do not install "msal" on linux/386 as the compilation fails --- build-scripts/sasl-build.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build-scripts/sasl-build.sh b/build-scripts/sasl-build.sh index 553c90b..f491fa5 100644 --- a/build-scripts/sasl-build.sh +++ b/build-scripts/sasl-build.sh @@ -56,7 +56,9 @@ setup_rust() { setup_python_venv() { python3 -m venv /sasl . /sasl/bin/activate - pip3 install msal + if [[ "$(uname -m)"!= "386" ]] && [[ "$(uname -m)"!= "i386" ]]; then + pip3 install msal + fi } # Installs the base components into the docker image: