We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c877ffe commit 6d9ec61Copy full SHA for 6d9ec61
scripts/msrv.sh
@@ -16,6 +16,9 @@ SCRIPT_DIR=$(dirname "$(readlink -f "$0")")
16
# Path to the configuration file
17
CONFIG_FILE="$SCRIPT_DIR/msrv_config.json"
18
19
+# Change to the root directory of the repository
20
+cd "$SCRIPT_DIR/.."
21
+
22
# function to check if specified toolchain is installed
23
check_rust_toolchain_installed() {
24
local version=$1
@@ -43,6 +46,8 @@ else
43
46
exit 1
44
47
fi
45
48
49
+echo "checking packages: "$packages
50
+echo
51
# Check MSRV for the packages
52
for package in $packages; do
53
echo "Running msrv check for $package with Rust $installed_version"
0 commit comments