From 7234d604ccd2a7c2d2607fef8564d5d57c8cd390 Mon Sep 17 00:00:00 2001 From: jlukic Date: Mon, 22 Dec 2014 15:14:03 -0500 Subject: [PATCH] #1476, adds error on no src path, gulp watch --- gulpfile.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gulpfile.js b/gulpfile.js index 9cf5e142d..a27e17298 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -273,6 +273,9 @@ gulp.task('watch', 'Watch for site/theme changes (Default Task)', function(callb ; } + else { + console.log('SRC Path Does Not Exist', srcPath); + } }) ;