Skip to content

Commit

Permalink
Merge pull request #1151 from postmodern/https
Browse files Browse the repository at this point in the history
Use https:// with curl.
  • Loading branch information
mpapis committed Sep 28, 2012
2 parents f2a4cce + 0e1560a commit 30c95c6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README
Expand Up @@ -13,7 +13,7 @@ It manages Ruby application environments and enables switching between them.

== Installation

curl -L get.rvm.io | bash -s stable [--ruby] [--rails] [--trace]
curl -L https://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
Expand Up @@ -27,7 +27,7 @@ rvmselect()

if [[ ! -d "${rvm_path}.${name}" ]]
then
curl -L get.rvm.io | bash
curl -L https://get.rvm.io | bash
mv "${rvm_path}" "${rvm_path}.${name}"
fi

Expand Down
2 changes: 1 addition & 1 deletion scripts/get
Expand Up @@ -9,7 +9,7 @@ get_usage()

get_via_installer()
{
curl -L get.rvm.io | bash -s -- $@ || return $?
curl -L https://get.rvm.io | bash -s -- $@ || return $?

typeset -x rvm_hook
rvm_hook="after_update"
Expand Down
2 changes: 1 addition & 1 deletion scripts/notes
Expand Up @@ -104,7 +104,7 @@ $notes_type Notes:
install RVM:
curl -L get.rvm.io | bash -s stable
curl -L https://get.rvm.io | bash -s stable
for details check:
Expand Down

0 comments on commit 30c95c6

Please sign in to comment.