diff --git a/run.n b/run.n index ae5b1ba..2bd33c8 100644 Binary files a/run.n and b/run.n differ diff --git a/src/hmm/utils/Shell.hx b/src/hmm/utils/Shell.hx index 9962855..39df971 100644 --- a/src/hmm/utils/Shell.hx +++ b/src/hmm/utils/Shell.hx @@ -119,7 +119,7 @@ class Shell { var result = { statusCode: commandResult.statusCode, isInstalled: false, path: null, libraryName: null, version: null }; var notInstalledRegex = ~/is not installed/i; var versionRegex = ~/^\s*-D\s*(.*)=(.*)\s*$/; - var pathRegex = ~/^(\/|[A-Z]:)/; + var pathRegex = ~/^(\/|[a-zA-Z]:)/; for (line in outputLines) { var outputLine = line.trim(); if (notInstalledRegex.match(outputLine)) {