fix(generate): output correct Sass import for pages

Closes #5641.
This commit is contained in:
Tim Lancina
2016-02-29 08:53:24 -06:00
parent 3d86cccafc
commit 3784f47cfa

View File

@ -28,9 +28,9 @@ Generator.prototype.renderTemplates = function renderTemplates() {
}, this);
console.log(('\nDon\'t forget to add an import for ' + scssName + ' ' + 'in ' +
path.join('app', 'themes', 'app.core.scss') + ':\n\n @import ' +
path.join('app', 'themes', 'app.core.scss') + ':\n\n @import "' +
path.relative(path.join(this.appDirectory, 'app', 'themes'), scssPath) +
'\n').green);
'";\n').green);
}