Check GraphicsMagick

This commit is contained in:
Aya Morisawa 2016-12-31 17:05:55 +09:00
parent ba28a1589e
commit 9631d05f54

View file

@ -14,6 +14,7 @@ export default class DependencyInfo {
this.show('npm', 'npm -v', x => x.match(/^(.*)\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\.]*) .*/));
this.logger.info('Checking finished');
}