summaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorAya Morisawa <AyaMorisawa4869@gmail.com>2016-12-30 03:20:44 +0900
committerAya Morisawa <AyaMorisawa4869@gmail.com>2016-12-30 03:20:44 +0900
commit3f960d46322090484d78fc091930aaed2d46b1a4 (patch)
treec7bb84e6752060dfd089bcb215834d6ecc5cdc13 /src/utils
parentFix bug (diff)
downloadsharkey-3f960d46322090484d78fc091930aaed2d46b1a4.tar.gz
sharkey-3f960d46322090484d78fc091930aaed2d46b1a4.tar.bz2
sharkey-3f960d46322090484d78fc091930aaed2d46b1a4.zip
Fix typo
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/check-dependencies.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/check-dependencies.ts b/src/utils/check-dependencies.ts
index 2b19543915..af2b5fb6bf 100644
--- a/src/utils/check-dependencies.ts
+++ b/src/utils/check-dependencies.ts
@@ -4,7 +4,7 @@ import { exec } from 'shelljs';
export default function(): void {
checkDependency('Node.js', 'node -v', x => x.match(/^v(.*)\r?\n$/));
checkDependency('npm', 'npm -v', x => x.match(/^(.*)\r?\n$/));
- checkDependency('MongoDB', 'mongo --version', x => x.match(/^MongoDDB shell version: (.*)\r?\n$/));
+ checkDependency('MongoDB', 'mongo --version', x => x.match(/^MongoDB shell version: (.*)\r?\n$/));
checkDependency('Redis', 'redis-server --version', x => x.match(/v=([0-9\.]*)/));
}