All pastes #2102380 Raw Edit

Anonymous

public text v1 · immutable
#2102380 ·published 2012-01-12 05:13 UTC
rendered paste body
  def determine_pkg_managers()
    pkg_mgrs = []
    ENV['PATH'].split(':').each do |loc|
      SUPPORTED_PKG_MANAGERS.each do |mgr|
        if File.exist?(File.join(loc,mgr))
          pkg_mgrs << mgr
        end
      end
    end
    return pkg_mgrs
  end