summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAya Morisawa <AyaMorisawa4869@gmail.com>2018-07-23 20:45:21 +0900
committerAya Morisawa <AyaMorisawa4869@gmail.com>2018-07-23 20:45:21 +0900
commite5c20ca9a7c176cb012d3e686bc3e71a5113a11f (patch)
treefb2e59076b57f3671c5c48882032760ec2b37bf8
parentfix(package): update webpack to version 4.16.2 (diff)
downloadsharkey-e5c20ca9a7c176cb012d3e686bc3e71a5113a11f.tar.gz
sharkey-e5c20ca9a7c176cb012d3e686bc3e71a5113a11f.tar.bz2
sharkey-e5c20ca9a7c176cb012d3e686bc3e71a5113a11f.zip
Update dependencyInfo.ts
-rw-r--r--src/misc/dependencyInfo.ts2
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 ([^ ]*)/));
}