Skip to content

Commit 4c0c839

Browse files
author
Nicolas Maloeuvre
committed
upgrade to 7.0.8-49
1 parent 1ab9c9e commit 4c0c839

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

ImageMagick-7.0.8-49.tar.xz

9.01 MB
Binary file not shown.

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,8 @@ Since the installation is cached you might want to clean it out due to config ch
2121

2222
1. `heroku plugins:install heroku-repo`
2323
2. `heroku repo:purge_cache -app HEROKU_APP_NAME`
24+
25+
### How to upgrade ImageMagick version
26+
- Go to https://imagemagick.org/download/
27+
- Download .tar.xz and put it in this repo
28+
- update `IMAGE_MAGICK_VERSION` in `compile`

bin/compile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ CACHE_DIR=$2
1111
CACHE_ENABLED=true
1212
VENDOR_DIR="$BUILD_DIR/vendor"
1313
INSTALL_DIR="$VENDOR_DIR/imagemagick"
14-
IMAGE_MAGICK_VERSION="7.0.8-48"
14+
IMAGE_MAGICK_VERSION="7.0.8-49"
1515
CACHE_FILE="$CACHE_DIR/imagemagick-$IMAGE_MAGICK_VERSION.tar.gz"
1616

1717
if [ ! -f $CACHE_FILE ] || [ $CACHE_ENABLED != 'true' ]; then
@@ -20,8 +20,6 @@ if [ ! -f $CACHE_FILE ] || [ $CACHE_ENABLED != 'true' ]; then
2020
IMAGE_MAGICK_DIR="ImageMagick-$IMAGE_MAGICK_VERSION"
2121
IMAGE_MAGICK_URL="https://raw.githubusercontent.com/steeple-dev/heroku-buildpack-imagemagick/master/$IMAGE_MAGICK_FILE"
2222

23-
24-
2523
echo "-----> Downloading ImageMagick from $IMAGE_MAGICK_URL"
2624
wget $IMAGE_MAGICK_URL -P $BUILD_DIR | indent
2725

0 commit comments

Comments
 (0)