summaryrefslogtreecommitdiff
path: root/src/utils/dependencyInfo.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/dependencyInfo.ts')
-rw-r--r--src/utils/dependencyInfo.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/dependencyInfo.ts b/src/utils/dependencyInfo.ts
index 863136743b..9d2c6a1d4f 100644
--- a/src/utils/dependencyInfo.ts
+++ b/src/utils/dependencyInfo.ts
@@ -9,7 +9,7 @@ export default class {
}
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:? (.*)\r?\n/));
this.show('Redis', 'redis-server --version', x => x.match(/v=([0-9\.]*)/));
this.show('GraphicsMagick', 'gm -version', x => x.match(/^GraphicsMagick ([0-9\.]*) .*/));
}