From 1c6abf0146495c7ea2d60da5e63b381195cd1966 Mon Sep 17 00:00:00 2001 From: Vitaliy Salnikov Date: Wed, 17 Jun 2020 15:35:33 +0300 Subject: [PATCH] Place config rendering temp data to renderer current directory --- xcode/config_generator/render_xcconfigs.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xcode/config_generator/render_xcconfigs.rb b/xcode/config_generator/render_xcconfigs.rb index 197c382..2575184 100755 --- a/xcode/config_generator/render_xcconfigs.rb +++ b/xcode/config_generator/render_xcconfigs.rb @@ -29,7 +29,7 @@ build_parameters_path = ARGV[1] || "build_parameters.yaml".in_current_dir Dir.mkdir($configs_folder_name) unless Dir.exist?($configs_folder_name) # Call python script and generate configs to config file -system("python #{generator_path} -bp #{build_parameters_path} -o . -r ios_build_settings -p ios") +system("python #{generator_path} -bp #{build_parameters_path} -o #{__dir__} -r ios_build_settings -p ios") # Open settings, configurations and template files target_xcconfig_tempate = File.read(template_path)