Skip to content
This repository has been archived by the owner on Oct 28, 2022. It is now read-only.

device is real device, not emulator with device tag #6

Merged
merged 1 commit into from
Jun 22, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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