Skip to content

Commit a54db84

Browse files
committed
fix newlines for packages
1 parent f0af219 commit a54db84

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

scripts/msrv.sh

+1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ echo "checking packages: "$packages
5252
echo
5353
# Check MSRV for the packages
5454
for package in $packages; do
55+
package=$(echo "$package" | tr -d '\r\n') # Remove any newline and carriage return characters
5556
echo "Running MSRV check for $package with Rust $installed_version"
5657
echo "Current working directory: $(pwd)"
5758
echo "Command: rustup run \"$installed_version\" cargo check --manifest-path=\"$package\" --all-features"

0 commit comments

Comments
 (0)