From f41ba11bfbc66ec4e50a711852502512fd17b175 Mon Sep 17 00:00:00 2001 From: cepages Date: Tue, 13 Aug 2024 23:40:46 +0100 Subject: [PATCH] Renamed config array var --- Rakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index 10e7b93..3307707 100644 --- a/Rakefile +++ b/Rakefile @@ -17,9 +17,9 @@ desc "Generates Swift source code and run its unit tests." task :test_swift do config_file_default = File.absolute_path("spec/fixtures/swift-tests.yml") config_file_no_infer_types = File.absolute_path("spec/fixtures/swift-tests_with_no_infer_types.yml") - config_array = [config_file_default, config_file_no_infer_types] + config_file_array = [config_file_default, config_file_no_infer_types] dotenv_file = File.absolute_path("spec/fixtures/.env.fruitloops") - config_array.each do |config_file| + config_file_array.each do |config_file| with_temp_dir do |temp_dir| puts "Current working directory: #{temp_dir}" sh("ARKANA_RUNNING_CI_INTEGRATION_TESTS=true arkana --config-filepath #{config_file} --dotenv-filepath #{dotenv_file} --include-environments dev,staging")