Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def run(devices)
end

# Install missing runtimes if needed.
runtime_helper.install_missing_runtimes(required_devices)
runtime_helper.install_missing_runtimes(required_devices, remove_cached_runtimes: remove_cached_runtimes)

# Create missing devices for required devices.
create_missing_devices(required_devices)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def delete_unusable_runtimes
shell_helper.simctl_devices_for_runtimes(force: true)
end

def install_missing_runtimes(required_devices)
def install_missing_runtimes(required_devices, remove_cached_runtimes:)
needed_runtimes = required_devices.filter_map(&:required_runtime).uniq

missing_runtimes = missing_runtimes(needed_runtimes)
Expand Down
2 changes: 1 addition & 1 deletion lib/fastlane/plugin/create_simulator_devices/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module Fastlane
module CreateSimulatorDevices
VERSION = '0.0.14'
VERSION = '0.0.15'
end
end