class Pod::Command::Install

Public Instance Methods

run() click to toggle source
# File lib/cocoapods-dongjia/command/install.rb, line 7
def run
  begin
    run_retryable()
  rescue => exception
    # 有异常,打开 --repo-update 重试
    unless @repo_update
      @repo_update = true
      run_retryable()
    end
  end
end
Also aliased as: run_retryable
run_retryable()
Alias for: run