Do not reinstall rust tools if present
This commit is contained in:
parent
e67b194962
commit
a7ad8bf45e
1 changed files with 6 additions and 4 deletions
|
@ -98,10 +98,12 @@ if [[ -z $NORUST ]]; then
|
||||||
git pull
|
git pull
|
||||||
git submodule update --init --recursive
|
git submodule update --init --recursive
|
||||||
fi
|
fi
|
||||||
cargo install -j $jobs_count -f rustfmt
|
set +e
|
||||||
cargo install -j $jobs_count -f racer
|
cargo install rustfmt
|
||||||
cargo install -j $jobs_count -f rustsym
|
cargo install racer
|
||||||
cargo install -j $jobs_count -f ripgrep
|
cargo install rustsym
|
||||||
|
cargo install ripgrep
|
||||||
|
set -e
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -z $NORUBY ]]; then
|
if [[ -z $NORUBY ]]; then
|
||||||
|
|
Loading…
Reference in a new issue