diff options
author | Ruben Oostinga | 2016-04-09 12:33:46 +0200 |
---|---|---|
committer | Ruben Oostinga | 2016-04-09 12:33:46 +0200 |
commit | 2dc546f5ba001a074296485ea17dd5d95c0c4d89 (patch) | |
tree | 8c06e68c9d95c6dae91c2e5d618aaee16d16612b | |
parent | d6406e433e94a6755bf8ef5214c71503aa1668e9 (diff) |
Fix watching for markdown files
`./*.md` didn't work `*.md` does work
-rw-r--r-- | Gruntfile.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 675adff..b8919bd 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -132,7 +132,7 @@ module.exports = function(grunt) { files: [ 'index.html'] }, markdown: { - files: [ './*.md' ] + files: [ '*.md' ] } } |