We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
check-crates.sh
1 parent f981b73 commit c88b3cdCopy full SHA for c88b3cd
contrib/scripts/check-crates.sh
@@ -44,7 +44,15 @@ skip_msrv=(
44
for arg in "${buildargs[@]}";
45
do
46
# Skip the current crate if is_msrv is true and it's in the skip list
47
- if [ "$is_msrv" == true ] && [[ $arg == "${skip_msrv[*]}" ]]; then
+ skip=false
48
+ for skip_arg in "${skip_msrv[@]}";
49
+ do
50
+ if [ "$is_msrv" == true ] && [[ "$arg" == "$skip_arg" ]]; then
51
+ skip=true
52
+ break
53
+ fi
54
+ done
55
+ if [ "$skip" == true ]; then
56
echo "Skipping MSRV check for '$arg'"
57
echo
58
continue
0 commit comments