diff --git a/lib/utils/template_generator.js b/lib/utils/template_generator.js index a3d5287d..f98ab221 100644 --- a/lib/utils/template_generator.js +++ b/lib/utils/template_generator.js @@ -51,7 +51,11 @@ class TemplateGenerator { let templatePath = fs.embarkPath(utils.joinPath('templates', this.templateName)); fs.copySync(templatePath, fspath); - this.installTemplate(fspath, name, (name === 'embark_demo')); + this.installTemplate( + fspath, + name, + (this.templateName === 'boilerplate' || this.templateName === 'demo') + ); if (name === 'embark_demo') { console.log('-------------------'.yellow);