Skip to content

Commit

Permalink
fix(generate): output correct Sass import for pages
Browse files Browse the repository at this point in the history
Closes #5641.
  • Loading branch information
tlancina committed Feb 29, 2016
1 parent 3d86ccc commit 3784f47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tooling/generators/page/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}


0 comments on commit 3784f47

Please sign in to comment.