Sha256: 81ee4c9bc78087577f4da0d57b383cdc6b05d3d696a7963e218116c1c7de80df
Contents?: true
Size: 364 Bytes
Versions: 21
Compression:
Stored size: 364 Bytes
Contents
module Pod module GitUtil def prepare_git_with_configs configs, work_dir index = 0 configs.each do |config| name = config["name"] git_url = config["git_url"] git_branch = config["git_branch"] command = "git clone #{git_url} -b #{git_branch} #{work_dir}/#{name}" Cmmd.sh! command end end end end
Version data entries
21 entries across 21 versions & 3 rubygems
Version | Path |
---|---|
cocoapods-xcframework-0.1.1 | lib/cocoapods-framework/util/git_util.rb |