check that rust version is 1.49.0

This commit is contained in:
Fabrice Reix 2021-01-05 08:17:34 +01:00
parent 35f0516b65
commit 43f4332939

View File

@ -2,7 +2,7 @@
set -e
# Check version
EXPECTED="1.48.0"
EXPECTED="1.49.0"
ACTUAL="$(cargo --version | cut -d" " -f2)"
echo "check that version is $EXPECTED"
if [ "$EXPECTED" != "$ACTUAL" ]; then