summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2016-02-12 17:56:08 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2016-02-12 17:56:08 +0100
commit29dca3a6c6bd5789991eb4ce3398c67ef3d12101 (patch)
treef7a28335c8bb4a6433e9db8aa7adcc9d8e0ba70a
parentb94f9b5d9f520aacb58baa4e5f449454162078b7 (diff)
fix paths
-rw-r--r--js/gulpfile.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/gulpfile.js b/js/gulpfile.js
index 6e8907632..2347a99b8 100644
--- a/js/gulpfile.js
+++ b/js/gulpfile.js
@@ -38,7 +38,7 @@ const sources = [
'directive/**/*.js'
];
const testSources = ['tests/**/*.js'];
-const phpSources = ['../*/**.php', '!../js/**', '!../vendor/*/**'];
+const phpSources = ['../**/*.php', '!../js/**', '!../vendor/**'];
const watchSources = sources.concat(testSources).concat('*.js');
const lintSources = watchSources;