HEX
Server: Apache
System: Linux s198.coreserver.jp 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: nagasaki (10062)
PHP: 7.1.33
Disabled: NONE
Upload Files
File: //usr/local/rvm/scripts/functions/notes/warnings/warning_rvm_group
#!/usr/bin/env bash

__rvm_notes_warning_rvm_group()
{
  if
    [[ "$rvm_path" == "/usr/local/rvm" ]] || (( UID == 0 ))
  then
    rvm_warn "  * Please do NOT forget to add your users to the <code>rvm</code> group.\n" \
             "    The installer no longer auto-adds root or users to the rvm group. Admins must do this.\n" \
             "    Also, please note that group memberships are ONLY evaluated at login time.\n" \
             "    This means that users must log out then back in before group membership takes effect!"
  fi
}

__rvm_notes_warning_rvm_group