Skip to content

Commit 663f3cf

Browse files
committed
Merge pull request #5 from schneems/master
Install Git after Homebrew
2 parents bd23d84 + ea75ffb commit 663f3cf

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

rails-install-osx-rvm.sh

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ echo "Installs Homebrew for installing other software"
44
/usr/bin/ruby -e "$(/usr/bin/curl -fksSL https://raw.github.com/mxcl/homebrew/master/Library/Contributions/install_homebrew.rb)"
55
brew update
66

7+
echo "Installs Git"
8+
brew install git
9+
710
echo "Installs RVM (Ruby Version Manager) for handling Ruby installation"
811
curl -kL get.rvm.io | bash -s stable
912
source ~/.rvm/scripts/rvm
@@ -20,6 +23,8 @@ echo -e "Now we are going to print some information to check that everything is
2023

2124
echo -n "Should be brew 0.8 or higher: brew "
2225
brew -v
26+
echo -n "Should be git 1.7.7 or higher: "
27+
git --version
2328
echo -n "Should be sqlite 3.7.3 or higher: sqlite "
2429
sqlite3 --version
2530
echo -n "Should be rvm 1.6.32 or higher: "
@@ -30,8 +35,8 @@ echo -n "Should be Rails 3.2.2 or higher: "
3035
rails -v
3136
echo -e "\n- - - - - -\n"
3237

33-
echo "If the versions match, everything is installed correctly. If the versions
34-
don't match or errors are shown, something went wrong with the automated process
38+
echo "If the versions match, everything is installed correctly. If the versions
39+
don't match or errors are shown, something went wrong with the automated process
3540
and we will help you do the installation the manual way at the event.
3641
3742
Congrats!"

0 commit comments

Comments
 (0)