From 122c0f84bc52891ac625b51f547cc6211ca89a44 Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Tue, 28 Jan 2025 03:10:08 +0100 Subject: [PATCH] Update Rakefile --- Rakefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Rakefile b/Rakefile index 1058d38c1..53e858a06 100644 --- a/Rakefile +++ b/Rakefile @@ -12,12 +12,12 @@ require_relative 'Vendor/xctoolchain/Scripts/xctask/build_task' SCRIPT_PATH = File.expand_path(File.dirname(__FILE__)) starters_path = File.join(SCRIPT_PATH, 'ParseStarterProject') -ios_version = ENV.fetch('IOS_VERSION') -ios_device_model = ENV.fetch('IOS_DEVICE_MODEL') -tvos_version = ENV.fetch('TV_OS_VERSION') -tv_device_model = ENV.fetch('TV_DEVICE_MODEL') -watchos_version = ENV.fetch('WATCH_OS_VERSION') -watch_device_model = ENV.fetch('WATCH_DEVICE_MODEL') +ios_version = ENV.fetch('IOS_VERSION', '') +ios_device_model = ENV.fetch('IOS_DEVICE_MODEL', '') +tvos_version = ENV.fetch('TV_OS_VERSION', '') +tv_device_model = ENV.fetch('TV_DEVICE_MODEL', '') +watchos_version = ENV.fetch('WATCH_OS_VERSION', '') +watch_device_model = ENV.fetch('WATCH_DEVICE_MODEL', '') puts "IOS_VERSION: #{ios_version}" puts "IOS_DEVICE_MODEL: #{ios_device_model}"