Skip to content

Commit

Permalink
Use the standalone installer for 'ci:install_heroku' rather than APT
Browse files Browse the repository at this point in the history
Since the APT installer takes 3.5x longer than the non-APT version,
and offers little benefit in a CI environment.

Closes #169.
  • Loading branch information
edmorley committed Jan 25, 2021
1 parent 9646b96 commit bb03e4b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## HEAD

- Switch `heroku ci:install_heroku` to the Heroku CLI standalone installer rather than the APT install method (https://github.com/heroku/hatchet/issues/171)

## 7.3.3

- Quiet personal tokens (https://github.com/heroku/hatchet/pull/148)
Expand Down
2 changes: 1 addition & 1 deletion etc/setup_heroku.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash

set -euo pipefail
curl --fail --retry 3 --retry-delay 1 --connect-timeout 3 --max-time 30 https://cli-assets.heroku.com/install-ubuntu.sh | sh
curl --fail --retry 3 --retry-delay 1 --connect-timeout 3 --max-time 30 https://cli-assets.heroku.com/install.sh | sh

0 comments on commit bb03e4b

Please sign in to comment.