Skip to content

Commit fe540e5

Browse files
committed
Fix some error during installation
Target on ubuntu 14.04
1 parent 82e4e91 commit fe540e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rails-install-ubuntu.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ echo "Updates packages. Asks for your password."
99
sudo apt-get update -y
1010

1111
echo "Installs packages. Give your password when asked."
12-
sudo apt-get install build-essential git-core curl openssl libssl-dev libcurl4-openssl-dev zlib1g zlib1g-dev libreadline libreadline-dev libreadline6 libreadline6-dev libyaml-dev libsqlite3-dev libsqlite3-0 sqlite3 libxml2-dev libxslt1-dev python-software-properties libffi-dev libgdm-dev libncurses5-dev automake autoconf libtool bison postgresql postgresql-contrib libpq-dev pgadmin3 libc6-dev nodejs -y
12+
sudo apt-get --ignore-missing install build-essential git-core curl openssl libssl-dev libcurl4-openssl-dev zlib1g zlib1g-dev libreadline libreadline-dev libreadline6 libreadline6-dev libyaml-dev libsqlite3-dev libsqlite3-0 sqlite3 libxml2-dev libxslt1-dev python-software-properties libffi-dev libgdm-dev libncurses5-dev automake autoconf libtool bison postgresql postgresql-contrib libpq-dev pgadmin3 libc6-dev nodejs -y
1313

1414
echo "Installs ImageMagick for image processing"
1515
sudo apt-get install imagemagick --fix-missing -y
@@ -34,7 +34,7 @@ echo -e "Now we are going to print some information to check that everything is
3434
echo -n "Should be sqlite 3.8.1 or higher: sqlite "
3535
sqlite3 --version
3636
echo -n "Should be rvm 1.26.11 or higher: "
37-
rvm --version | sed '/^.*$/N;s/\n//g' | cut -c 1-10
37+
rvm --version | sed '/^.*$/N;s/\n//g' | cut -c 1-11
3838
echo -n "Should be ruby 2.2.2: "
3939
ruby -v | cut -d " " -f 2
4040
echo -n "Should be Rails 4.2.1 or higher: "

0 commit comments

Comments
 (0)