Skip to content

Commit

Permalink
fix defaults to root
Browse files Browse the repository at this point in the history
  • Loading branch information
mpapis committed Jun 28, 2011
1 parent b7e2915 commit c208b96
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/functions/installer
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ determine_install_path()

if [[ -z "${rvm_prefix:-}" ]]
then
true ${rvm_user_install_flag:=1}
true ${rvm_user_install_flag:=0}
if (( UID > 0 || rvm_user_install_flag == 1 ))
then
rvm_prefix="$HOME"
Expand Down
2 changes: 1 addition & 1 deletion scripts/rvm
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ then

if [[ -z "${rvm_prefix:-}" ]]
then
true ${rvm_user_install_flag:=1}
true ${rvm_user_install_flag:=0}
if (( UID > 0 || rvm_user_install_flag == 1 ))
then
rvm_prefix="$HOME"
Expand Down

0 comments on commit c208b96

Please sign in to comment.