List directories being watched when server is run
authorDylan MacKenzie <dylanxmackenzie@gmail.com>
Thu, 2 Apr 2015 04:40:29 +0000 (21:40 -0700)
committerbep <bjorn.erik.pedersen@gmail.com>
Thu, 2 Apr 2015 10:52:08 +0000 (12:52 +0200)
commit99a18b21fcc2523015c071b8915cae00a83842b5
tree28d6ace240d1c9813a661c4449dc4fb54f3fa6be
parent72aa516c756510e19a19a81419879fb31e6952f1
List directories being watched when server is run

Fixes part of issue 1030. Previously hugo only listed the content
directory as being watched. Now we list all files being watched
according to `commands.getDirList()`. We also introduce a RemoveSubpaths
function and test in the helpers module to reduce noise in the command
line output by not showing subdirectories of ones already being watched.

For example, instead of:
`Watching for changes in $HOME/blog/content`
We get:
`Watching for changes in
$HOME/blog/{data,content,layouts,static,themes/my-theme}`
commands/server.go
helpers/path.go
helpers/path_test.go