]> Untitled Git - bdk/commitdiff
Update 'cargo-check.sh' to not check +nightly
authorSteve Myers <steve@notmandatory.org>
Thu, 8 Apr 2021 21:36:07 +0000 (14:36 -0700)
committerSteve Myers <steve@notmandatory.org>
Thu, 8 Apr 2021 21:36:07 +0000 (14:36 -0700)
scripts/cargo-check.sh

index 865088664a5e0f56beb40a66ce0ec73c1db93167..a014f62125884cc2fc10a8bded8064d072185e6b 100755 (executable)
@@ -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