Merge pull request #93 from TouchInstinct/feature/fix_carthage
Don't run carthage if there is no Cartfile
This commit is contained in:
commit
8bbbf9f01f
|
|
@ -10,7 +10,9 @@ before_all do |lane, options|
|
|||
sh("rm -rf #{podsReposPath}")
|
||||
end
|
||||
|
||||
carthage(platform: "iOS")
|
||||
if File.exists? "../Cartfile"
|
||||
carthage(platform: "iOS")
|
||||
end
|
||||
|
||||
cocoapods(
|
||||
clean: true,
|
||||
|
|
|
|||
Loading…
Reference in New Issue