# File lib/heroku/plugin.rb, line 69
    def install
      FileUtils.mkdir_p(path)
      Dir.chdir(path) do
        git("init -q")
        git("pull #{uri} master -q")
        unless $?.success?
          FileUtils.rm_rf path
          return false
        end
      end
      true
    end