diff --git a/gulpfile.js b/gulpfile.js index 327a51579c..af4bda1fd1 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -191,6 +191,10 @@ gulp.task('nginx-stop', ['nginx-conf'], async () => { gulp.task('nginx-conf', async () => { const mustache = require('mustache'); + if (!fs.existsSync(nginxTemp)) { + fs.mkdirSync(nginxTemp); + } + let params = { services: await getServices(), defaultService: defaultService,