Fix watching for markdown files

`./*.md` didn't work `*.md` does work
This commit is contained in:
Ruben Oostinga 2016-04-09 12:33:46 +02:00
parent d6406e433e
commit 2dc546f5ba
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ module.exports = function(grunt) {
files: [ 'index.html']
},
markdown: {
files: [ './*.md' ]
files: [ '*.md' ]
}
}