Skip to content

Commit

Permalink
Fix watching for markdown files
Browse files Browse the repository at this point in the history
`./*.md` didn't work `*.md` does work
  • Loading branch information
0xR committed Apr 9, 2016
1 parent d6406e4 commit 2dc546f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ module.exports = function(grunt) {
files: [ 'index.html']
},
markdown: {
files: [ './*.md' ]
files: [ '*.md' ]
}
}

Expand Down

0 comments on commit 2dc546f

Please sign in to comment.