Skip to content

Commit

Permalink
Fix ADB version matching regex.
Browse files Browse the repository at this point in the history
  • Loading branch information
gunta committed Apr 19, 2016
1 parent c63779e commit e18d78d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/util/doctor.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ doctor.checkADB = function() {
'adb'
, 'version'
, 'Local ADB'
, /Android Debug Bridge version ((.|\n)*?)/g
, /Android Debug Bridge version (\d+\.\d+\.\d+)(\n.*)?/g
, function(ver) {
unsupportedVersion('AD', ver, pkg.externalDependencies.adb)
}
Expand Down

0 comments on commit e18d78d

Please sign in to comment.