Commit 26381697 authored by Jeremy Slater's avatar Jeremy Slater

Bug fixes and cleanup

parent 0551e51f
......@@ -187,11 +187,9 @@ module Pod
#
def clean_sandbox
sandbox.public_headers.implode!
targets.each do |target|
target.libraries.each do |library|
libraries.each do |library|
library.build_headers.implode!
end
end
unless sandbox_state.deleted.empty?
title_options = { :verbose_prefix => "-> ".red }
......
......@@ -79,7 +79,7 @@ module Pod
# @return [String] a string representation suitable for debugging.
#
def inspect
"#<#{self.class} for target `#{target_definition.label}'>"
"#<#{self.class} for target `#{target.label}'>"
end
#---------------------------------------------------------------------#
......
......@@ -209,7 +209,7 @@ module Pod
installer = Installer.new(sandbox, podfile)
installer.install!
file_accessors = installer.libraries.first.file_accessors
file_accessors = installer.targets.first.libraries.first.file_accessors
@file_accessor = file_accessors.find { |accessor| accessor.spec == spec }
config.silent
end
......
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