Commit fc8507dc authored by Eloy Duran's avatar Eloy Duran

A few small fixes related to integrating multiple targets/projects.

parent a28730d9
......@@ -35,7 +35,11 @@ module Pod
end
def user_project_paths
@podfile.target_definitions.values.map { |td| td.user_project.path }
@podfile.target_definitions.values.map do |td|
next if td.empty?
td.user_project.path #|| raise(Informative, "Could not resolve the Xcode project in which the " \
# "`#{td.name}' target should be integrated.")
end.compact
end
def create_workspace!
......
......@@ -79,7 +79,7 @@ module Pod
end
def platform
@platform || @parent.platform
@platform || (@parent.platform if @parent)
end
def label
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment