We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3bccb1 commit 6dad48eCopy full SHA for 6dad48e
ci/script.sh
@@ -10,6 +10,10 @@ MSRV="1.20.0"
10
# to build on Rust 1.20.0.
11
if [ "$TRAVIS_RUST_VERSION" = "$MSRV" ]; then
12
cargo update -p lazy_static --precise 1.1.0
13
+ # On older versions of Cargo, this apparently needs to be run twice
14
+ # if Cargo.lock didn't previously exist. Since this command should be
15
+ # idempotent, we run it again unconditionally.
16
+ cargo update -p lazy_static --precise 1.1.0
17
fi
18
19
# Builds the regex crate and runs tests.
0 commit comments