From 5efaf159905a63adc7ab45e7a726f6269701bf3e Mon Sep 17 00:00:00 2001 From: Ivan Smolin Date: Mon, 11 Mar 2019 18:42:02 +0300 Subject: [PATCH] fix paths --- xcode/commonFastfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xcode/commonFastfile b/xcode/commonFastfile index b75e150..d792814 100644 --- a/xcode/commonFastfile +++ b/xcode/commonFastfile @@ -9,7 +9,7 @@ private_lane :installDependencies do |options| sh("rm -rf #{podsReposPath}") end - if File.exists? "./Cartfile" + if File.exists? "../Cartfile" carthage(platform: "iOS") end @@ -258,7 +258,7 @@ def symbolize_keys(hash) end def fabric_keys_from_xcodeproj(xcodeproj_path) - fabric_keys_from_shell_script(sh("cat ../#{xcodeproj_path}/project.pbxproj | grep 'Fabric/run'")) + fabric_keys_from_shell_script(sh("cat #{xcodeproj_path}/project.pbxproj | grep 'Fabric/run'")) end def fabric_keys_from_shell_script(shell_script_contents)