From a7ad8bf45e32f452a57a8bf2a1f941ff42277af1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Fri, 7 Oct 2016 10:01:17 +0200 Subject: [PATCH] Do not reinstall rust tools if present --- common/configure_fresh_system | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/common/configure_fresh_system b/common/configure_fresh_system index 86bbb68f..9969c1d3 100755 --- a/common/configure_fresh_system +++ b/common/configure_fresh_system @@ -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