We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0af219 commit a54db84Copy full SHA for a54db84
scripts/msrv.sh
@@ -52,6 +52,7 @@ echo "checking packages: "$packages
52
echo
53
# Check MSRV for the packages
54
for package in $packages; do
55
+ package=$(echo "$package" | tr -d '\r\n') # Remove any newline and carriage return characters
56
echo "Running MSRV check for $package with Rust $installed_version"
57
echo "Current working directory: $(pwd)"
58
echo "Command: rustup run \"$installed_version\" cargo check --manifest-path=\"$package\" --all-features"
0 commit comments