From 67e6f952b619da9ce0c49099d2060dcd8299f5dc Mon Sep 17 00:00:00 2001 From: Alex Tselegidis Date: Mon, 4 Oct 2021 09:24:44 +0200 Subject: [PATCH] Added the system directory to the gulp build. --- gulpfile.js | 1 + 1 file changed, 1 insertion(+) diff --git a/gulpfile.js b/gulpfile.js index 37495bb3..cdd22418 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -36,6 +36,7 @@ gulp.task('package', (done) => { fs.copySync('application', 'build/application'); fs.copySync('assets', 'build/assets'); fs.copySync('engine', 'build/engine'); + fs.copySync('system', 'build/system'); fs.ensureDirSync('build/storage/backups'); fs.copySync('storage/backups/.htaccess', 'build/storage/backups/.htaccess');