Commit 36ac64ac authored by Marin Usalj's avatar Marin Usalj

checked for :path and :local. Fixes #971.

parent fe06de42
......@@ -13,11 +13,13 @@ module Pod
name = dependency.root_name
params = dependency.external_source
klass = if params.key?(:git) then GitSource
elsif params.key?(:svn) then SvnSource
elsif params.key?(:hg) then MercurialSource
elsif params.key?(:podspec) then PodspecSource
elsif params.key?(:local) then LocalSource
klass = if params.key?(:git) then GitSource
elsif params.key?(:svn) then SvnSource
elsif params.key?(:hg) then MercurialSource
elsif params.key?(:podspec) then PodspecSource
elsif params.key?(:local) ||
params.key?(:path) then LocalSource
end
if klass
......
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