Skip to content

Commit

Permalink
update get.rvm.io installer
Browse files Browse the repository at this point in the history
  • Loading branch information
mpapis committed Apr 7, 2012
1 parent 22244bd commit af31e23
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ It manages Ruby application environments and switching between them.

== Installation

bash -s stable [--ruby] [--rails] [--trace] < <(curl -sL get.rvm.io)
curl -L get.rvm.io | bash -s stable [--ruby] [--rails] [--trace]

stable :: Install stable RVM, good for servers.
--ruby :: Additionally install latest ruby version (MRI).
Expand Down
2 changes: 1 addition & 1 deletion scripts/functions/developer
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ rvmselect()

if [[ ! -d "${rvm_path}.${name}" ]]
then
bash < <(curl -sL get.rvm.io)
curl -L get.rvm.io | bash
mv "${rvm_path}" "${rvm_path}.${name}"
fi

Expand Down
2 changes: 1 addition & 1 deletion scripts/get
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ get_usage()

get_via_installer()
{
bash -s -- $@ < <(curl -sL get.rvm.io) || return $?
curl -L get.rvm.io | bash -s -- $@ || return $?

typeset -x rvm_hook
rvm_hook="after_update"
Expand Down
2 changes: 1 addition & 1 deletion scripts/notes
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ $notes_type Notes:
install RVM:
bash -s stable < <(curl -sL get.rvm.io)
curl -L get.rvm.io | bash -s stable
"
fi
Expand Down

0 comments on commit af31e23

Please sign in to comment.