# File lib/fpm/util.rb, line 33
  def program_exists?(program)
    # Scan path to find the executable
    # Do this to help the user get a better error message.
    return program_in_path?(program) if !program.include?("/") 
    return File.executable?(program)
  end