From ceedd970a7409f8490c3dec22450c5de75edadd2 Mon Sep 17 00:00:00 2001 From: Mark Date: Sun, 6 Mar 2016 14:38:33 +0100 Subject: [PATCH] location of sheetWorkers --- D&D_5e_Reshaped/precompiled/gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/D&D_5e_Reshaped/precompiled/gulpfile.js b/D&D_5e_Reshaped/precompiled/gulpfile.js index b7e14a1cce..63a55a3a1e 100644 --- a/D&D_5e_Reshaped/precompiled/gulpfile.js +++ b/D&D_5e_Reshaped/precompiled/gulpfile.js @@ -159,11 +159,11 @@ gulp.task('compileJS', ['lint'], function() { header: '' })) - .pipe(gulp.dest('../')); + .pipe(gulp.dest('./')); }); gulp.task('compile', ['preCompile', 'lint', 'compileJS'], function () { - return gulp.src(['../D&D_5e.html', '../sheetWorkers.js', './components/rollTemplate.html']) + return gulp.src(['../D&D_5e.html', './sheetWorkers.js', './components/rollTemplate.html']) .pipe(concat('D&D_5e.html')) .pipe(gulp.dest('../')); });