From: Geoff Kimball Date: Wed, 23 Mar 2016 05:02:49 +0000 (-0700) Subject: Fix generated ZIP download having the wrong path in the tag X-Git-Tag: v2.0.1~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=689d46d722bd49f7b345ca709df87df11d3aa00c;p=thirdparty%2Ffoundation%2Ffoundation-emails.git Fix generated ZIP download having the wrong path in the tag --- diff --git a/gulpfile.js b/gulpfile.js index e1cb2a97..cac9b32d 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -164,6 +164,7 @@ gulp.task('templates', function() { gulp.task('download:build:index', function() { return gulp.src('test/visual/_template.html', { base: 'test/visual' }) .pipe($.injectString.replace('<%= contents %>', '')) + .pipe($.injectString.replace('../assets/', '')) .pipe($.rename('index.html')) .pipe(gulp.dest('.download')); });