Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 27a01f9

Browse files
committedJun 4, 2024
fix script
1 parent 6d9ec61 commit 27a01f9

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎scripts/msrv.sh

+5-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ RUST_VERSION=$1
1313
# Determine the directory containing the script
1414
SCRIPT_DIR=$(dirname "$(readlink -f "$0")")
1515

16+
echo "Current working directory: $(pwd)"
17+
1618
# Path to the configuration file
1719
CONFIG_FILE="$SCRIPT_DIR/msrv_config.json"
1820

@@ -50,6 +52,8 @@ echo "checking packages: "$packages
5052
echo
5153
# Check MSRV for the packages
5254
for package in $packages; do
53-
echo "Running msrv check for $package with Rust $installed_version"
55+
echo "Running MSRV check for $package with Rust $installed_version"
56+
echo "Current working directory: $(pwd)"
57+
echo "Command: rustup run \"$installed_version\" cargo check --manifest-path=\"$package\" --all-features"
5458
rustup run "$installed_version" cargo check --manifest-path=$package --all-features
5559
done

0 commit comments

Comments
 (0)
Please sign in to comment.