Skip to content

Commit

Permalink
device is real device, not emulator with device tag
Browse files Browse the repository at this point in the history
  • Loading branch information
johanlantz authored and janpio committed Nov 24, 2018
1 parent 4997a3e commit 04b6204
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils/utilities.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var kill = require('tree-kill');

var HEADING_LINE_PATTERN = /List of devices/m;
var DEVICE_ROW_PATTERN = /(emulator|device|host)/m;
var DEVICE_ONLY_ROW_PATTERN = /(device)/m;
var DEVICE_ONLY_ROW_PATTERN = /(^(?!.*(emulator)).*device.*$)/m;

var KILL_SIGNAL = 'SIGINT';

Expand Down

0 comments on commit 04b6204

Please sign in to comment.