summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Wu <peter@lekensteyn.nl>2015-05-07 10:34:31 +0200
committerPeter Wu <peter@lekensteyn.nl>2015-05-07 10:34:31 +0200
commit5cb8b8c246d8f87fcb3f70a73693e05e651362b3 (patch)
tree7d6046752b75f44efd6ef8867cd198b55b35aa34
parentc47af89c818fd4e7a32e1621d264a19d49facd69 (diff)
downloadn-5cb8b8c246d8f87fcb3f70a73693e05e651362b3.tar.gz
Print mongod output
-rw-r--r--gulpfile.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/gulpfile.js b/gulpfile.js
index a1bfd3d..dea9e2b 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -32,7 +32,9 @@ gulp.task('mongod', function() {
'--dbpath', 'db/data',
'--nounixsocket',
'--bind_ip', '127.0.0.1',
- ]);
+ ], {
+ stdio: 'inherit',
+ });
});
// Lazy me, make "gulp" the same as "gulp server" for now.