fix a bug in finding ios real device id

This commit is contained in:
Jonah Stiennon 2015-04-22 11:51:36 -07:00
Родитель a50ffb0d5b
Коммит 2edff49657
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -825,7 +825,7 @@ IOS.prototype.detectUdid = function (cb) {
}
if (stdout && stdout.length > 2) {
this.args.udid = stdout.replace("\n", "");
this.args.udid = stdout.split("\n")[0];
logger.debug("Detected udid as " + this.args.udid);
cb();
} else {