From 145d2a95fa093d3d30efa2fce76ee61e7a8322c2 Mon Sep 17 00:00:00 2001 From: Chuck Lantz Date: Tue, 18 Aug 2020 19:41:09 -0700 Subject: [PATCH] Remove rc update warning (CI Ignore) --- script-library/go-debian.sh | 4 +--- script-library/java-debian.sh | 6 ++---- script-library/rust-debian.sh | 4 +--- 3 files changed, 4 insertions(+), 10 deletions(-) diff --git a/script-library/go-debian.sh b/script-library/go-debian.sh index 85bda531a8..483e3a626c 100644 --- a/script-library/go-debian.sh +++ b/script-library/go-debian.sh @@ -109,8 +109,6 @@ if [ "${UPDATE_RC}" = "true" ]; then if [ "${USERNAME}" != "root" ]; then echo -e ${RC_SNIPPET} | tee -a /home/${USERNAME}/.bashrc /home/${USERNAME}/.zshrc fi - echo "Done!" -else - echo "Done! Be sure to add ${GO_HOME}/bin to the PATH." fi +echo "Done!" diff --git a/script-library/java-debian.sh b/script-library/java-debian.sh index 8615acc882..b36b3e62d1 100644 --- a/script-library/java-debian.sh +++ b/script-library/java-debian.sh @@ -72,7 +72,5 @@ if [ "${UPDATE_RC}" = "true" ]; then if [ "${USERNAME}" != "root" ]; then echo -e ${RC_SNIPPET} | tee -a /home/${USERNAME}/.bashrc /home/${USERNAME}/.zshrc fi - echo "Done!" -else - echo "Done! Be sure to add ${JAVA_HOME}/bin to the PATH." -fi \ No newline at end of file +fi +echo "Done!" diff --git a/script-library/rust-debian.sh b/script-library/rust-debian.sh index 2e2c054046..c3dc1eb91f 100644 --- a/script-library/rust-debian.sh +++ b/script-library/rust-debian.sh @@ -60,8 +60,6 @@ if [ "${UPDATE_RC}" = "true" ]; then if [ "${USERNAME}" != "root" ]; then echo -e ${RC_SNIPPET} | tee -a /home/${USERNAME}/.bashrc /home/${USERNAME}/.zshrc fi - echo "Done!" -else - echo "Done! Be sure to add ${CARGO_HOME}/bin to the PATH." fi +echo "Done!"