Commit 8a73c7d3 authored by Luke Redpath's avatar Luke Redpath

A few little bugs discovered with some end-to-end testing.

parent cef1a627
......@@ -90,7 +90,6 @@ module Pod
end
else
puts " * Pre-downloading: `#{@name}'" unless config.silent?
pod = LocalPods.new
Downloader.for_dependency(self).download
spec = pod_root + "#{@name}.podspec"
end
......@@ -100,7 +99,7 @@ module Pod
end
def pod_root
config.project_pods_root + @name
Config.instance.project_pods_root + @name
end
# Taken from RubyGems 1.3.7
......
......@@ -58,7 +58,7 @@ module Pod
def install_dependencies!
build_specifications.map do |spec|
Pod.new(sandbox, spec).tap do |pod|
LocalPod.new(sandbox, spec).tap do |pod|
if pod.exists? || spec.local?
puts "Using #{pod}" unless config.silent?
else
......
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