From cf401ce990a1d0a5a70040a3b139efe7dbcfe9d9 Mon Sep 17 00:00:00 2001 From: Thomas Dohmke Date: Sat, 3 Dec 2011 19:00:24 +0100 Subject: [PATCH] Fixed post-install hook. --- HockeySDK.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HockeySDK.podspec b/HockeySDK.podspec index 168ef6d921..ac0bdcc139 100644 --- a/HockeySDK.podspec +++ b/HockeySDK.podspec @@ -25,7 +25,7 @@ Pod::Spec.new do |s| # Add a copy build phase and make it copy the the CrashReporter.framework to the shared BUILT_PRODUCTS_DIR, # so that both the Pods project and the user's project will pick it up. phase = target_installer.target.buildPhases.add(Xcodeproj::Project::PBXCopyFilesBuildPhase, 'dstPath' => 'Pods/Frameworks') - file = target_installer.project.main_group.files.new('path' => 'HockeySDK-iOS/Vendor/CrashReporter.framework') + file = target_installer.project.main_group.files.new('path' => 'HockeySDK/Vendor/CrashReporter.framework') phase.files << file.buildFiles.new phases = target_installer.target.attributes['buildPhases'] phases.delete(phase.uuid)