Skip to content

Commit 9d3b573

Browse files
committed
fix(gen): typo in heroku generator was preventing it from working on unix based systems
fixes #189
1 parent 08e6c98 commit 9d3b573

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

heroku/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Generator.prototype.gitInit = function gitInit() {
5454

5555
this.log(chalk.bold('\nInitializing deployment repo'));
5656
this.mkdir('dist');
57-
exec('git init"', { cwd: 'dist' }, function (err, stdout, stderr) {
57+
exec('git init', { cwd: 'dist' }, function (err, stdout, stderr) {
5858
this.log(stdout);
5959
done();
6060
}.bind(this));

0 commit comments

Comments
 (0)