scripts/wrapper in rvm-1.0.6 vs scripts/wrapper in rvm-1.0.7

- old
+ new

@@ -2,11 +2,11 @@ default_flag="$rvm_default_flag" # Prevent recursion unset rvm_default_flag rvm_wrapper_name -source "$rvm_scripts_path/base" +source "$rvm_path/scripts/base" usage() { printf " Usage: @@ -64,10 +64,10 @@ wrap_binary() { # We wrap when the given binary is in the path or override_check is set to one. if [[ "$override_check" = "1" ]] || command -v $binary_name > /dev/null; then wrap else - "$rvm_scripts_path/log" "error" "Binary '$binary_name' not found in path." + "$rvm_path/scripts/log" "error" "Binary '$binary_name' not found in path." return 1 fi } # Empty ruby string: show usage and exit.