Added the system directory to the gulp build.

This commit is contained in:
Alex Tselegidis 2021-10-04 09:24:44 +02:00
parent 3a6f347246
commit d0b5fd170b
1 changed files with 1 additions and 0 deletions

View File

@ -36,6 +36,7 @@ gulp.task('package', (done) => {
fs.copySync('application', 'build/application'); fs.copySync('application', 'build/application');
fs.copySync('assets', 'build/assets'); fs.copySync('assets', 'build/assets');
fs.copySync('engine', 'build/engine'); fs.copySync('engine', 'build/engine');
fs.copySync('system', 'build/system');
fs.ensureDirSync('build/storage/backups'); fs.ensureDirSync('build/storage/backups');
fs.copySync('storage/backups/.htaccess', 'build/storage/backups/.htaccess'); fs.copySync('storage/backups/.htaccess', 'build/storage/backups/.htaccess');