diff options
author | 2019-09-15 22:30:41 +0200 | |
---|---|---|
committer | 2019-09-15 22:30:41 +0200 | |
commit | 0f5894cafe3ebab6597174dbfcca0df38bb6da83 (patch) | |
tree | dd767a677d943940f614851d0de7c8231b3ae54c /ci/install.sh | |
parent | c818a310587e928a1be92c7ce22399eb9b195da5 (diff) | |
download | rtic-0f5894cafe3ebab6597174dbfcca0df38bb6da83.tar.gz rtic-0f5894cafe3ebab6597174dbfcca0df38bb6da83.tar.zst rtic-0f5894cafe3ebab6597174dbfcca0df38bb6da83.zip |
Fixed install script
Diffstat (limited to '')
-rw-r--r-- | ci/install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/install.sh b/ci/install.sh index aa701205..3fb5f833 100644 --- a/ci/install.sh +++ b/ci/install.sh @@ -2,9 +2,9 @@ set -euxo pipefail main() { # these are not needed for doc builds - if [ $TRAVIS_BRANCH != master ] || [ $TRAVIS_PULL_REQUEST != false ]; then + if [ $TRAVIS_BRANCH != master ] || [ $TRAVIS_PULL_REQUEST != false ]; then if [ $TARGET = x86_64-unknown-linux-gnu ]; then - ( cd .. && cargo install microamp-tools --version 0.1.0-alpha.3 -f ) + ( cd .. && cargo install microamp-tools --version 0.1.0-alpha.2 -f ) rustup target add thumbv6m-none-eabi thumbv7m-none-eabi fi |