lib/simctl/command/install.rb in simctl-1.5.1 vs lib/simctl/command/install.rb in simctl-1.5.2

- old
+ new

@@ -9,10 +9,10 @@ # # @param device [SimCtl::Device] the device the app should be installed on # @param path Absolute path to the app that should be installed # @return [void] def install_app(device, path) - Executor.execute([COMMAND, device.udid, Shellwords.shellescape(path)]) + Executor.execute(command_for('install', device.udid, Shellwords.shellescape(path))) end end end end