Commit 8d9f05fb authored by mattip's avatar mattip
Browse files

fix problem with manylinux_2_24 image

parent 306ccee7
......@@ -55,6 +55,12 @@ else
fi
elif [[ $MB_ML_VER == "_2_24" ]]; then
apt update
if [ ! -d /usr/local/man ]; then
# Fix problem with manylinux_2_24 image
# /usr/local/man is a broken symlink
rm /usr/local/man
ln -s /usr/share/man /usr/local/man
fi
if [ "${MB_PYTHON_VERSION:0:4}" == "pypy" ]; then
apt install -y wget
fi
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment