| Server IP : 164.138.27.172 / Your IP : 216.73.216.143 Web Server : nginx/1.27.4 System : Linux cookingdream 6.8.0-124-generic #124-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 13:00:45 UTC 2026 x86_64 User : www-adm ( 1001) PHP Version : 8.3.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /home/jonasn/.rvm/hooks/ |
Upload File : |
#!/usr/bin/env bash
function set_current_alias()
{
typeset __current_ruby
if
__current_ruby="${rvm_environments_path}/current" &&
[[ -L "${__current_ruby:-}" ]]
then
__current_ruby="$( readlink "${__current_ruby:-}" )"
__current_ruby="${__current_ruby##*/}"
fi
if
[[ -z "${__current_ruby}" || "${__current_ruby}" != "${rvm_ruby_string}" ]]
then
"$rvm_scripts_path/alias" create current "${rvm_ruby_string}"
fi
}
if
[[ $TM_WRAPPING != "1" ]]
then
export TM_WRAPPING="1"
set_current_alias
unset TM_WRAPPING
fi