Skip to content

Commit 61be6f5

Browse files
committed
fix newlines for packages
1 parent a54db84 commit 61be6f5

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

scripts/msrv.sh

+2
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,10 @@ echo
5353
# Check MSRV for the packages
5454
for package in $packages; do
5555
package=$(echo "$package" | tr -d '\r\n') # Remove any newline and carriage return characters
56+
echo "Processing pacakge:"$package":"
5657
echo "Running MSRV check for $package with Rust $installed_version"
5758
echo "Current working directory: $(pwd)"
5859
echo "Command: rustup run \"$installed_version\" cargo check --manifest-path=\"$package\" --all-features"
60+
echo "Package length: ${#package}"
5961
rustup run "$installed_version" cargo check --manifest-path=$package --all-features
6062
done

0 commit comments

Comments
 (0)