Update 'cargo-check.sh' to not check +nightly

This commit is contained in:
Steve Myers 2021-04-08 14:36:07 -07:00
parent e37680af96
commit 4da7488dc4
No known key found for this signature in database
GPG Key ID: 8105A46B22C2D051

View File

@ -3,7 +3,7 @@
# Run various invocations of cargo check
features=( "default" "compiler" "electrum" "esplora" "compact_filters" "key-value-db" "async-interface" "all-keys" "keys-bip39" )
toolchains=( "+stable" "+1.46" "+nightly" )
toolchains=( "+stable" "+1.46" )
main() {
check_src
@ -17,6 +17,7 @@ check_src() {
for feature in "${features[@]}"; do
touch_files
echo $cmd --features "$feature"
$cmd --features "$feature"
done
done