mirror of
https://github.com/openstf/stf
synced 2025-10-04 18:29:17 +02:00
Fix ADB version matching regex.
This commit is contained in:
parent
c63779e90a
commit
e18d78ddef
1 changed files with 1 additions and 1 deletions
|
@ -138,7 +138,7 @@ doctor.checkADB = function() {
|
||||||
'adb'
|
'adb'
|
||||||
, 'version'
|
, 'version'
|
||||||
, 'Local ADB'
|
, 'Local ADB'
|
||||||
, /Android Debug Bridge version ((.|\n)*?)/g
|
, /Android Debug Bridge version (\d+\.\d+\.\d+)(\n.*)?/g
|
||||||
, function(ver) {
|
, function(ver) {
|
||||||
unsupportedVersion('AD', ver, pkg.externalDependencies.adb)
|
unsupportedVersion('AD', ver, pkg.externalDependencies.adb)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue