Do not reinstall rust tools if present

This commit is contained in:
Cyryl Płotnicki 2016-10-07 10:01:17 +02:00
parent e67b194962
commit a7ad8bf45e

View file

@ -98,10 +98,12 @@ if [[ -z $NORUST ]]; then
git pull
git submodule update --init --recursive
fi
cargo install -j $jobs_count -f rustfmt
cargo install -j $jobs_count -f racer
cargo install -j $jobs_count -f rustsym
cargo install -j $jobs_count -f ripgrep
set +e
cargo install rustfmt
cargo install racer
cargo install rustsym
cargo install ripgrep
set -e
fi
if [[ -z $NORUBY ]]; then