Skip to content

Commit 676da62

Browse files
committed
Fix: Do not install "msal" on linux/386 as the compilation fails
1 parent 6fd4b11 commit 676da62

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

build-scripts/sasl-build.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,9 @@ setup_rust() {
5656
setup_python_venv() {
5757
python3 -m venv /sasl
5858
. /sasl/bin/activate
59-
pip3 install msal
59+
if [[ "$(uname -m)"!= "386" ]] && [[ "$(uname -m)"!= "i386" ]]; then
60+
pip3 install msal
61+
fi
6062
}
6163

6264
# Installs the base components into the docker image:

0 commit comments

Comments
 (0)