diff --git a/build.sh b/build.sh index 02bff49..70b55be 100755 --- a/build.sh +++ b/build.sh @@ -51,6 +51,11 @@ doc() { errcheck $? } +msrv() { + cargo msrv find --ignore-lockfile --no-check-feedback + errcheck $? +} + if [[ "$#" == "0" ]]; then #clean format @@ -86,8 +91,8 @@ else bench) bench ;; - '') - compile + msrv) + msrv ;; *) echo "Bad task: $a"