# File lib/travis/tools/system.rb, line 76
      def has?(command)
        return false unless unix?
        @has ||= {}
        @has.fetch(command) { @has[command] = system "which #{command} 2>/dev/null >/dev/null" }
      end