# File lib/heroku/plugin.rb, line 67
    def install
      FileUtils.mkdir_p(path)
      Dir.chdir(path) do
        system("git init -q")
        if !system("git pull #{uri} master -q")
          FileUtils.rm_rf path
          return false
        end
      end
      true
    end