We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87fa604 commit 4252f0bCopy full SHA for 4252f0b
scripts/ci/install_and_check_minimum_requirements.sh
@@ -40,7 +40,7 @@ echo "-- Installing Boost ${BOOST_VERSION}"
40
sudo apt-get -qq update -y
41
sudo apt-get -qq install libboost${BOOST_VERSION}-all-dev -y
42
INSTALLED_BOOST_VERSION=$(dpkg-query --showformat='${Version}' --show libboost${BOOST_VERSION}-all-dev 2>/dev/null || echo "none")
43
-if [[ "$INSTALLED_BOOST_VERSION" != "$BOOST_VERSION" ]]; then
+if [[ "$INSTALLED_BOOST_VERSION" != ${BOOST_VERSION}* ]]; then
44
echo "Error: installed version of boost is $INSTALLED_BOOST_VERSION, expected $BOOST_VERSION"
45
exit 1
46
fi
0 commit comments