From 43485eb8f5076f94a56ec52f44fac7ea0cb3c563 Mon Sep 17 00:00:00 2001 From: Vlad Date: Tue, 23 Mar 2021 16:56:39 +0300 Subject: [PATCH] Correct params input to sh --- xcode/commonFastfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xcode/commonFastfile b/xcode/commonFastfile index 950a2d8..92a3102 100644 --- a/xcode/commonFastfile +++ b/xcode/commonFastfile @@ -434,7 +434,7 @@ def run_code_generation_phase_if_needed(options) xcodeproj_path = File.expand_path options[:xcodeproj_path] if File.exists? code_generation_script_path - sh("code_generation_script_path ${xcodeproj_path}") + sh("#{code_generation_script_path} #{xcodeproj_path}") end end