bin/calabash-android-build.rb in calabash-android-0.9.22 vs bin/calabash-android-build.rb in calabash-android-0.9.24

- old
+ new

@@ -1,8 +1,8 @@ def calabash_build(app) apk_fingerprint = fingerprint_from_apk(app) - log "#{app} was signed with a certificate with fingerprint #{apk_fingerprint}" + calabash_log "#{app} was signed with a certificate with fingerprint #{apk_fingerprint}" keystores = JavaKeystore.get_keystores if keystores.empty? puts "No keystores found." puts "Please create one or run calabash-android setup to configure calabash-android to use an existing keystore." @@ -70,10 +70,10 @@ end keystore.sign_apk("#{workspace_dir}/TestServer.apk", test_server_file_name) begin rescue => e - log e + calabash_log e raise "Could not sign test server" end end puts "Done signing the test server. Moved it to #{test_server_file_name}" end