Skip to content

Commit

Permalink
Switch to the heroku-buildpack-geo S3 bucket (#39)
Browse files Browse the repository at this point in the history
Previously the assets for this buildpack were stored in an S3 bucket
owned by a Bucketeer addon on a Heroku app, which is inconsistent
with our other buildpacks. (It was set up this way, since the original
buildpack author was on a different team and didn't have access to
the required AWS account).

Now, a new `heroku-buildpack-geo` S3 bucket has been created,
with the existing assets copied over.

GUS-W-11089566.
  • Loading branch information
edmorley committed May 20, 2022
1 parent e3869d0 commit c452e72
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/compile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ vendor_lib() {
VENDOR_DIR=$3

echo "-----> Installing $LIBRARY-$VERSION"
LIBRARY_URL="https://bucketeer-9aa8f376-a619-404c-b004-6db0317bcfe8.s3.amazonaws.com/$STACK/$LIBRARY/$LIBRARY-$VERSION.tar.gz"
LIBRARY_URL="https://heroku-buildpack-geo.s3.amazonaws.com/${STACK}/${LIBRARY}/${LIBRARY}-${VERSION}.tar.gz"

mkdir -p "$VENDOR_DIR"
if ! curl "${LIBRARY_URL}" -s | tar zxv -C "$VENDOR_DIR" &> /dev/null; then
Expand Down
2 changes: 1 addition & 1 deletion builds/dependencies/utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ vendor_dependency() {
VENDOR_DIR=$3

echo "-----> Installing $DEP-$VERSION"
DEP_URL="https://bucketeer-9aa8f376-a619-404c-b004-6db0317bcfe8.s3.amazonaws.com/$STACK/$DEP/$DEP-$VERSION.tar.gz"
DEP_URL="https://heroku-buildpack-geo.s3.amazonaws.com/${STACK}/${DEP}/${DEP}-${VERSION}.tar.gz"

mkdir -p "$VENDOR_DIR"
if ! curl "${DEP_URL}" -sSf | tar zxv -C "$VENDOR_DIR"; then
Expand Down

0 comments on commit c452e72

Please sign in to comment.