fix(heroku): use absolute path for heroku command on travis

/usr/local/bin/heroku is installed by the script, /usr//bin/heroku might be there installed by travis, ensure we use the correct one
This commit is contained in:
Łukasz Mierzwa
2018-09-28 22:09:13 +01:00
parent 6c58f6f3b8
commit c6b61ce96e

View File

@@ -122,4 +122,4 @@ jobs:
- docker push registry.heroku.com/karma-demo/web
# bundled heroku cli doesn't know anything about containers, update it
- curl https://cli-assets.heroku.com/install.sh | sh
- heroku container:release web --app karma-demo
- /usr/local/bin/heroku container:release web --app karma-demo