aboutsummaryrefslogtreecommitdiff
path: root/Gruntfile.js
diff options
context:
space:
mode:
authorRuben Oostinga <0xR@users.noreply.github.com>2016-04-09 12:33:46 +0200
committerRuben Oostinga <0xR@users.noreply.github.com>2016-04-09 12:33:46 +0200
commit2dc546f5ba001a074296485ea17dd5d95c0c4d89 (patch)
tree8c06e68c9d95c6dae91c2e5d618aaee16d16612b /Gruntfile.js
parentd6406e433e94a6755bf8ef5214c71503aa1668e9 (diff)
downloadfreenode-live-2017-presentation-2dc546f5ba001a074296485ea17dd5d95c0c4d89.tar
freenode-live-2017-presentation-2dc546f5ba001a074296485ea17dd5d95c0c4d89.tar.gz
Fix watching for markdown files
`./*.md` didn't work `*.md` does work
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js2
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' ]
}
}