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/src/rvm/scripts/functions/notes/warnings/warning_var
#!/usr/bin/env bash

__rvm_notes_warning_var()
{
  for __var in RUBYOPT RUBYLIB
  do
    if eval "[[ -n \"\${${__var}:-}\" ]]"
    then
      rvm_warn "
  * WARNING: You have <code>${__var}</code> <warn>set in your current environment.
    This may cause rubies to not work as you expect them to as it is not supported
    by all of them If errors show up, please try unsetting <code>${__var}</code> <warn>first.
"
    fi
  done
}

__rvm_notes_warning_var