Method: Calabash::Android::Operations::Device#pull

Defined in:
lib/calabash-android/operations.rb

#pull(remote, local) ⇒ Object

[View source]

576
577
578
579
# File 'lib/calabash-android/operations.rb', line 576

def pull(remote, local)
  cmd = "#{adb_command} pull #{remote} #{local}"
  raise "Could not pull #{remote} to #{local}" unless system(cmd)
end