From 785ef6adb58bdd8c051436ba67615740c1ccdb1d Mon Sep 17 00:00:00 2001 From: sayali Date: Wed, 9 Dec 2020 19:45:36 -0800 Subject: [PATCH] Uncommented rev-manifest: allowEmpty --- gulp/build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulp/build.js b/gulp/build.js index 17419ea5..c864037a 100644 --- a/gulp/build.js +++ b/gulp/build.js @@ -238,7 +238,7 @@ gulp.task('addUrlContextPath:revision', async function(){ }); gulp.task('addUrlContextPath:revreplace', gulp.series('addUrlContextPath:revision', function(){ - var manifest = gulp.src("lemur/static/dist/rev-manifest.json"); + var manifest = gulp.src("lemur/static/dist/rev-manifest.json", { allowEmpty: true }); var urlContextPathExists = argv.urlContextPath ? true : false; return gulp.src( "lemur/static/dist/index.html") .pipe(gulp.dest('lemur/static/dist'));