Update dependencyInfo.ts

This commit is contained in:
Aya Morisawa 2018-07-23 20:45:21 +09:00
parent bd4a7d8cbb
commit e5c20ca9a7

View file

@ -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 ([^ ]*)/));
}