Skip to content

Commit

Permalink
fix(generator): Fix broken template reference in index.html by runnin…
Browse files Browse the repository at this point in the history
…g it through Yeoman engine
  • Loading branch information
diegonetto committed Jul 29, 2014
1 parent ce534bc commit e445cc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ IonicGenerator.prototype.setupEnv = function setupEnv() {
};

IonicGenerator.prototype.readIndex = function readIndex() {
this.indexFile = this.read(path.join(this.starterCache, 'index.html'));
this.indexFile = this.engine(this.read(path.join(this.starterCache, 'index.html')), this);
};

IonicGenerator.prototype.appJs = function appJs() {
Expand Down

0 comments on commit e445cc5

Please sign in to comment.