Skip to content

Commit

Permalink
fix(app): Cannot read property 'configuration' of undefined during ex…
Browse files Browse the repository at this point in the history
…ternal theme copy

fix #69
  • Loading branch information
vogloblinsky committed Jan 16, 2017
1 parent 595e601 commit 2127408
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/application.ts
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ export class Application {
}
else {
if (that.configuration.mainData.extTheme) {
fs.copy(path.resolve(process.cwd() + path.sep + that.configuration.mainData.extTheme), path.resolve(process.cwd() + path.sep + this.configuration.mainData.output + '/styles/'), function (err) {
fs.copy(path.resolve(process.cwd() + path.sep + that.configuration.mainData.extTheme), path.resolve(process.cwd() + path.sep + that.configuration.mainData.output + '/styles/'), function (err) {
if (err) {
logger.error('Error during external styling theme copy ', err);
} else {
Expand Down

0 comments on commit 2127408

Please sign in to comment.