From: Chris Sharp Date: Wed, 28 Oct 2020 14:16:51 +0000 (-0400) Subject: LP#1901900: Update EDI Webrick installer for Ubuntu 18.04 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=4c5a7d591514f5a1dad52f5df858839bd36dee47;p=evergreen%2Fmasslnc.git LP#1901900: Update EDI Webrick installer for Ubuntu 18.04 Signed-off-by: Chris Sharp Signed-off-by: Bill Erickson --- diff --git a/Open-ILS/src/edi_translator/install-ubuntu.sh b/Open-ILS/src/edi_translator/install-ubuntu.sh index 73e4ec572b..7f16985b3d 100755 --- a/Open-ILS/src/edi_translator/install-ubuntu.sh +++ b/Open-ILS/src/edi_translator/install-ubuntu.sh @@ -4,6 +4,8 @@ UBUNTU_RELEASE=$(lsb_release -sc) if [ "$UBUNTU_RELEASE" == "xenial" ]; then RUBY_VERSION="2.3.0" +elif [ "$UBUNTU_RELEASE" == "bionic" ]; then + RUBY_VERSION="2.5.0" else echo "Could not determine your Ubuntu release." echo "Please consult $0 and install manually." @@ -14,7 +16,7 @@ fi sudo apt-get install rubygems-integration ruby-dev # install gem dependencies -sudo gem install parseconfig rspec edi4r edi4r-tdid json openils-mapper +sudo gem install parseconfig rspec edi4r edi4r-tdid json openils-mapper xmlrpc # clone berick's openils-mapper repo git clone https://github.com/berick/openils-mapper