From bfc723b23809777fa8ca2d5f58dfb30c82c57e1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Thu, 3 Nov 2016 21:12:59 +0100 Subject: [PATCH] More verbosity around installing RVM --- common/configure_fresh_system | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common/configure_fresh_system b/common/configure_fresh_system index 5695a7a6..2e896bc3 100755 --- a/common/configure_fresh_system +++ b/common/configure_fresh_system @@ -123,11 +123,14 @@ if [[ -z $NORUBY ]]; then $GPG --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 set -e $GPG --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 + echo "Downloading RVM..." curl -sSL https://get.rvm.io | bash set +e + echo "Sourcing RVM..." source /usr/local/rvm/scripts/rvm source ~/.rvm/scripts/rvm set -e + echo "Installing Ruby..." rvm install 2.3.1 --disable-binary fi