Skip to content

Commit

Permalink
Execute bin/heroku_install via sh
Browse files Browse the repository at this point in the history
Closes [#511].

Be explicit about executing the Heroku setup script by invoking `sh`
directly.

[#511]: #511
  • Loading branch information
seanpdoyle committed Jan 27, 2017
1 parent 0455925 commit 93761bd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
master
------

* Execute `bin/heroku_install` through `sh` [#512]
* Generate `package.json` with `bower` as a `dependencies` value.

[#512]: https://github.com/thoughtbot/ember-cli-rails/pull/512

0.8.3
-----

Expand Down
2 changes: 1 addition & 1 deletion lib/generators/ember/heroku/templates/package.json.erb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"scripts": {
"postinstall": "./bin/heroku_install"
"postinstall": "sh bin/heroku_install"
},
"dependencies": {
"bower": "*"
Expand Down

0 comments on commit 93761bd

Please sign in to comment.