From 2dc546f5ba001a074296485ea17dd5d95c0c4d89 Mon Sep 17 00:00:00 2001 From: Ruben Oostinga <0xR@users.noreply.github.com> Date: Sat, 9 Apr 2016 12:33:46 +0200 Subject: Fix watching for markdown files `./*.md` didn't work `*.md` does work --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Gruntfile.js') 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' ] } } -- cgit v1.2.3