From c6b61ce96e3c9200272cdaab312f77c01bdac81e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mierzwa?= Date: Fri, 28 Sep 2018 22:09:13 +0100 Subject: [PATCH] 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 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 57255d5f0..afcb0e7c2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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