2 Commits
1.3.0 ... 1.3.1

Author SHA1 Message Date
Shazron Abdullah
7c9af71d86 Updated version to 1.3.1 2014-11-14 13:09:11 -08:00
Shazron Abdullah
767c386ba9 Fixes phonegap/ios-deploy#80 --detect not showing non-zero exit code when no devices are detected. 2014-11-14 13:07:19 -08:00
2 changed files with 5 additions and 3 deletions

View File

@@ -16,7 +16,7 @@
#include <netinet/tcp.h>
#include "MobileDevice.h"
#define APP_VERSION "1.3.0"
#define APP_VERSION "1.3.1"
#define PREP_CMDS_PATH "/tmp/fruitstrap-lldb-prep-cmds-"
#define LLDB_SHELL "lldb -s " PREP_CMDS_PATH
/*
@@ -1607,8 +1607,10 @@ void timeout_callback(CFRunLoopTimerRef timer, void *info) {
}
else
{
if (!debug)
if (!debug) {
printf("[....] No more devices found.\n");
exit(exitcode_error);
}
else
{
int mypid = getpid();

View File

@@ -1,6 +1,6 @@
{
"name": "ios-deploy",
"version": "1.3.0",
"version": "1.3.1",
"description": "launch iOS apps iOS devices from the command line (Xcode 6)",
"main": "ios-deploy",
"scripts": {