# File lib/sprockets/environment.rb, line 24
    def find(location)
      if Sprockets.absolute?(location) && File.exists?(location)
        pathname_from(location)
      else
        find_all(location).first
      end
    end