X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/57b36a0ec32ba48689089bce6b8c449da2e57c40..6b13646940de2e5a62e600f2d7d82c72e3a4ae59:/docker/build.sh?ds=inline diff --git a/docker/build.sh b/docker/build.sh index 9473e015b8..cbcc840667 100755 --- a/docker/build.sh +++ b/docker/build.sh @@ -1,11 +1,14 @@ #! /bin/bash -# make sure Ruby is installed before proceeding -if ! ruby -v > /dev/null 2>&1 +# make sure Ruby 1.9.3 is installed before proceeding +if ! ruby -e 'exit RUBY_VERSION >= "1.9.3"' 2>/dev/null then - echo "Installing Ruby. You may be required to enter your password." + echo "Installing Arvados requires at least Ruby 1.9.3." + echo "You may need to enter your password." + read -p "Press Ctrl-C to abort, or else press ENTER to install ruby1.9.3 and continue. " unused + sudo apt-get update - sudo apt-get install ruby + sudo apt-get -y install ruby1.9.3 fi -./build.rb $* +build_tools/build.rb $*