From 9846adab20f319df5974edf828778d78b83b7ac9 Mon Sep 17 00:00:00 2001 From: librelois <elois@ifee.fr> Date: Wed, 17 Jun 2020 14:27:07 +0200 Subject: [PATCH] [build] remove command rustup show --- neon/build.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/neon/build.sh b/neon/build.sh index e0789be52..a71a80952 100755 --- a/neon/build.sh +++ b/neon/build.sh @@ -7,14 +7,13 @@ if [ -z "${DUNITER_FAST_BUILD}" ]; then curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y export PATH="$HOME/.cargo/bin:$PATH" fi - - rustup show - rustc --version - cargo --version else echo "WARNING: you have disabled the automatic update of Rust, remember to update Rust regularly with command \"rustup update\"." fi +rustc --version +cargo --version + cd neon if [ "${NEON_BUILD_RELEASE}" = "true" ] || [ "${NODE_ENV}" = "production" ]; then -- GitLab