Skip to content

Commit 4aafa9d

Browse files
committed
install git after homebrew
1 parent bd23d84 commit 4aafa9d

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

rails-install-osx-rvm.sh

Lines changed: 5 additions & 0 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: "

0 commit comments

Comments
 (0)