diff options
| author | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2018-07-23 20:45:21 +0900 |
|---|---|---|
| committer | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2018-07-23 20:45:21 +0900 |
| commit | e5c20ca9a7c176cb012d3e686bc3e71a5113a11f (patch) | |
| tree | fb2e59076b57f3671c5c48882032760ec2b37bf8 | |
| parent | fix(package): update webpack to version 4.16.2 (diff) | |
| download | sharkey-e5c20ca9a7c176cb012d3e686bc3e71a5113a11f.tar.gz sharkey-e5c20ca9a7c176cb012d3e686bc3e71a5113a11f.tar.bz2 sharkey-e5c20ca9a7c176cb012d3e686bc3e71a5113a11f.zip | |
Update dependencyInfo.ts
| -rw-r--r-- | src/misc/dependencyInfo.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/misc/dependencyInfo.ts b/src/misc/dependencyInfo.ts index 9f443b126d..5270567519 100644 --- a/src/misc/dependencyInfo.ts +++ b/src/misc/dependencyInfo.ts @@ -9,7 +9,7 @@ export default class { } public showAll(): void { - this.show('MongoDB', 'mongo --version', x => x.match(/^MongoDB shell version:? (.*)\r?\n/)); + this.show('MongoDB', 'mongo --version', x => x.match(/^MongoDB shell version:? v(.*)\r?\n/)); this.show('Redis', 'redis-server --version', x => x.match(/v=([0-9\.]*)/)); this.show('ImageMagick', 'magick -version', x => x.match(/^Version: ImageMagick ([^ ]*)/)); } |