Skip to content

Commit 9269715

Browse files
committed
fixed order of brew commands (first install git for brew update to work)
1 parent be7bcc7 commit 9269715

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

rails-install-osx-rvm.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,14 @@ set -e
22

33
echo "Installs Homebrew for installing other software"
44
/usr/bin/ruby -e "$(/usr/bin/curl -fsSkL raw.github.com/mxcl/homebrew/go)"
5-
brew update
65

76
echo "Installs Git"
87
brew install git
98

9+
echo "Updates Homebrew"
10+
brew update
11+
12+
1013
echo "Installs RVM (Ruby Version Manager) for handling Ruby installation"
1114
curl -kL get.rvm.io | bash -s stable
1215
source ~/.rvm/scripts/rvm

0 commit comments

Comments
 (0)