We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fd4b11 commit 676da62Copy full SHA for 676da62
build-scripts/sasl-build.sh
@@ -56,7 +56,9 @@ setup_rust() {
56
setup_python_venv() {
57
python3 -m venv /sasl
58
. /sasl/bin/activate
59
- pip3 install msal
+ if [[ "$(uname -m)"!= "386" ]] && [[ "$(uname -m)"!= "i386" ]]; then
60
+ pip3 install msal
61
+ fi
62
}
63
64
# Installs the base components into the docker image:
0 commit comments