Skip to content
Snippets Groups Projects
Commit 17f992a1 authored by Kenneth Reitz's avatar Kenneth Reitz Committed by GitHub
Browse files

Improvements (#471)


* only do this on heroku-16

* history

Signed-off-by: default avatarKenneth Reitz <me@kennethreitz.org>

* code comment

Signed-off-by: default avatarKenneth Reitz <me@kennethreitz.org>
parent 24895082
No related branches found
No related tags found
No related merge requests found
# Python Buildpack Changelog # Python Buildpack Changelog
# 117
Bug fix.
# 116 # 116
Vendoring improvements. Vendoring improvements.
......
...@@ -30,7 +30,12 @@ if [[ "$BUILD_WITH_GEO_LIBRARIES" ]]; then ...@@ -30,7 +30,12 @@ if [[ "$BUILD_WITH_GEO_LIBRARIES" ]]; then
curl "$VENDORED_GDAL" -s | tar zxv -C .heroku/vendor &> /dev/null curl "$VENDORED_GDAL" -s | tar zxv -C .heroku/vendor &> /dev/null
curl "$VENDORED_GEOS" -s | tar zxv -C .heroku/vendor &> /dev/null curl "$VENDORED_GEOS" -s | tar zxv -C .heroku/vendor &> /dev/null
curl "$VENDORED_PROJ" -s | tar zxv -C .heroku/vendor &> /dev/null curl "$VENDORED_PROJ" -s | tar zxv -C .heroku/vendor &> /dev/null
cp /usr/lib/x86_64-linux-gnu/libjasper.so* ".heroku/vendor/lib/."
# Copy libjasper from build image to slug.
if [[ "$STACK" == "heroku-16" ]]; then
cp /usr/lib/x86_64-linux-gnu/libjasper.so* ".heroku/vendor/lib/."
fi
fi fi
GDAL=$(pwd)/vendor GDAL=$(pwd)/vendor
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment