From a33e2ad05d9877b4205afb0134c8b48661a27265 Mon Sep 17 00:00:00 2001 From: Vitaliy Salnikov Date: Mon, 10 Aug 2020 11:08:06 +0300 Subject: [PATCH] Fix syntax error --- xcode/commonFastfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xcode/commonFastfile b/xcode/commonFastfile index 5db6521..bd0054e 100644 --- a/xcode/commonFastfile +++ b/xcode/commonFastfile @@ -388,7 +388,7 @@ def get_configuration_for_type(type, options) appName = options[:appName] || $appName project_config_path = "configurations_#{appName}.yaml" - relative_config_path = File.exists? project_config_path ? project_config_path : "configurations.yaml" + relative_config_path = File.exists?(project_config_path) ? project_config_path : "configurations.yaml" config_path = File.expand_path relative_config_path configuration = Touchlane::Configuration.from_file(config_path, type)