summaryrefslogtreecommitdiff
path: root/gulpfile.js
diff options
context:
space:
mode:
Diffstat (limited to 'gulpfile.js')
-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.