# File lib/rye/box.rb, line 341
341:     def ostype
342:       return @rye_ostype if @rye_ostype # simple cache
343:       os = self.quietly { uname.first } rescue nil
344:       os ||= 'unknown'
345:       os &&= os.downcase
346:       @rye_ostype = os
347:     end