Top Level Namespace

Defined Under Namespace

Classes: Envcheck

Constant Summary collapse

SCRIPT_PATH =

Library Path ===========================================================

begin
  script_path = __FILE__
  
  count = 0

  while (File.lstat(script_path).symlink?)
    script_path = File.readlink(script_path)
    
    count += 1
    break if (count > 100)
  end
  
  script_path
end