Skip to content

Commit 2e6e0ef

Browse files
authored
fix: runtimes dl (#31)
1 parent 6113365 commit 2e6e0ef

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/fastlane/plugin/create_simulator_devices/helpers/create_simulator_devices/runner.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def run(devices)
4444
end
4545

4646
# Install missing runtimes if needed.
47-
runtime_helper.install_missing_runtimes(required_devices)
47+
runtime_helper.install_missing_runtimes(required_devices, remove_cached_runtimes: remove_cached_runtimes)
4848

4949
# Create missing devices for required devices.
5050
create_missing_devices(required_devices)

lib/fastlane/plugin/create_simulator_devices/helpers/create_simulator_devices/runtime_helper.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def delete_unusable_runtimes
3939
shell_helper.simctl_devices_for_runtimes(force: true)
4040
end
4141

42-
def install_missing_runtimes(required_devices)
42+
def install_missing_runtimes(required_devices, remove_cached_runtimes:)
4343
needed_runtimes = required_devices.filter_map(&:required_runtime).uniq
4444

4545
missing_runtimes = missing_runtimes(needed_runtimes)

lib/fastlane/plugin/create_simulator_devices/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
module Fastlane
44
module CreateSimulatorDevices
5-
VERSION = '0.0.14'
5+
VERSION = '0.0.15'
66
end
77
end

0 commit comments

Comments
 (0)