diff --git a/src/utils/dependencyInfo.ts b/src/utils/dependencyInfo.ts index e0d8f24d7..a184a849b 100644 --- a/src/utils/dependencyInfo.ts +++ b/src/utils/dependencyInfo.ts @@ -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'); }