Skip to content

Commit

Permalink
fix(gen): typo in heroku generator was preventing it from working on …
Browse files Browse the repository at this point in the history
…unix based systems

fixes #189
  • Loading branch information
DaftMonk committed Apr 17, 2014
1 parent 08e6c98 commit 9d3b573
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion heroku/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Generator.prototype.gitInit = function gitInit() {

this.log(chalk.bold('\nInitializing deployment repo'));
this.mkdir('dist');
exec('git init"', { cwd: 'dist' }, function (err, stdout, stderr) {
exec('git init', { cwd: 'dist' }, function (err, stdout, stderr) {
this.log(stdout);
done();
}.bind(this));
Expand Down

0 comments on commit 9d3b573

Please sign in to comment.