diff --git a/manifests/system.pp b/manifests/system.pp index b2ae0c18..870be95c 100644 --- a/manifests/system.pp +++ b/manifests/system.pp @@ -1,7 +1,7 @@ class rvm::system($version='latest') { exec { 'system-rvm': path => '/usr/bin:/usr/sbin:/bin', - command => "bash -c '/usr/bin/curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer -o /tmp/rvm-installer ; \ + command => "bash -c '/usr/bin/curl -sL https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer -o /tmp/rvm-installer ; \ chmod +x /tmp/rvm-installer ; \ rvm_bin_path=/usr/local/rvm/bin rvm_man_path=/usr/local/rvm/man /tmp/rvm-installer --version ${version} ; \ rm /tmp/rvm-installer'",