diff options
author | Samy Pessé <samypesse@gmail.com> | 2014-05-01 18:55:45 +0200 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2014-05-01 18:55:45 +0200 |
commit | 2946246834b58f21c60ff7208ddd355a3db69017 (patch) | |
tree | 028044f4c8678fba0bf01c2f360a45212f69c26a /bin/gitbook.js | |
parent | 6d276d1e7941552d405a22eb1b7c644eb63b07fe (diff) | |
download | gitbook-2946246834b58f21c60ff7208ddd355a3db69017.zip gitbook-2946246834b58f21c60ff7208ddd355a3db69017.tar.gz gitbook-2946246834b58f21c60ff7208ddd355a3db69017.tar.bz2 |
Fix #191: remove log for changes in files
Diffstat (limited to 'bin/gitbook.js')
-rwxr-xr-x | bin/gitbook.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/gitbook.js b/bin/gitbook.js index c2f0ed1..88083b9 100755 --- a/bin/gitbook.js +++ b/bin/gitbook.js @@ -46,7 +46,7 @@ build.command(prog.command('serve [source_dir]')) if (!options.watch) return; return utils.watch(_options.input) .then(function(filepath) { - console.log("Restart after change in "+path.relative(dir, filepath)); + console.log("Restart after change in files"); console.log(''); return generate(); }) |