From f6195de306a7c0c30f522b930efc9d6d61380366 Mon Sep 17 00:00:00 2001 From: squidfunk Date: Sat, 27 Feb 2016 12:19:18 +0100 Subject: [PATCH] Corrected wrong path for static asset monitoring in Gulpfile --- Gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gulpfile.js b/Gulpfile.js index a5e730370..e759bf410 100755 --- a/Gulpfile.js +++ b/Gulpfile.js @@ -254,7 +254,7 @@ gulp.task('assets:watch', function() { /* Copy static assets */ gulp.watch([ - 'assets/assets/{fonts,images}/*' + 'src/assets/{fonts,images}/*' ], ['assets:static']); /* Minify views */