File tree 3 files changed +6
-3
lines changed
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -21,3 +21,8 @@ Since the installation is cached you might want to clean it out due to config ch
21
21
22
22
1 . ` heroku plugins:install heroku-repo `
23
23
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 `
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ CACHE_DIR=$2
11
11
CACHE_ENABLED=true
12
12
VENDOR_DIR=" $BUILD_DIR /vendor"
13
13
INSTALL_DIR=" $VENDOR_DIR /imagemagick"
14
- IMAGE_MAGICK_VERSION=" 7.0.8-48 "
14
+ IMAGE_MAGICK_VERSION=" 7.0.8-49 "
15
15
CACHE_FILE=" $CACHE_DIR /imagemagick-$IMAGE_MAGICK_VERSION .tar.gz"
16
16
17
17
if [ ! -f $CACHE_FILE ] || [ $CACHE_ENABLED != ' true' ]; then
@@ -20,8 +20,6 @@ if [ ! -f $CACHE_FILE ] || [ $CACHE_ENABLED != 'true' ]; then
20
20
IMAGE_MAGICK_DIR=" ImageMagick-$IMAGE_MAGICK_VERSION "
21
21
IMAGE_MAGICK_URL=" https://raw.githubusercontent.com/steeple-dev/heroku-buildpack-imagemagick/master/$IMAGE_MAGICK_FILE "
22
22
23
-
24
-
25
23
echo " -----> Downloading ImageMagick from $IMAGE_MAGICK_URL "
26
24
wget $IMAGE_MAGICK_URL -P $BUILD_DIR | indent
27
25
You can’t perform that action at this time.
0 commit comments