Compare commits

...

1 Commits

Author SHA1 Message Date
kennethreitz 17f992a106 Improvements (#471)
* only do this on heroku-16

* history

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

* code comment

Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
2017-09-08 12:02:03 -04:00
2 changed files with 10 additions and 1 deletions
+4
View File
@@ -1,5 +1,9 @@
# Python Buildpack Changelog
# 117
Bug fix.
# 116
Vendoring improvements.
+6 -1
View File
@@ -30,7 +30,12 @@ if [[ "$BUILD_WITH_GEO_LIBRARIES" ]]; then
curl "$VENDORED_GDAL" -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
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
GDAL=$(pwd)/vendor