Skip to content

Commit

Permalink
More fixes to ImageMagick install on Circle
Browse files Browse the repository at this point in the history
  • Loading branch information
mddub committed Nov 24, 2016
1 parent 524b683 commit eb59b66
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions test/ensure-pebble-test-environment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,11 @@ if [ ! -e ~/imagemagick ]; then
cd ~/imagemagick
wget http://www.imagemagick.org/download/ImageMagick.tar.gz
tar -xvzf ImageMagick.tar.gz
IMAGEMAGICK_PATH=`ls -1 | grep ^ImageMagick-`
cd $IMAGEMAGICK_PATH
cd `ls -1 | grep ^ImageMagick-`
./configure
make
fi
cd ~/imagemagick/$IMAGEMAGICK_PATH
cd ~/imagemagick/`ls -1 ~/imagemagick/ | grep ^ImageMagick-`
sudo make install
sudo ldconfig /usr/local/lib
(convert logo: logo.gif && rm logo.gif) || { echo "ImageMagick install failed"; exit 1; }

0 comments on commit eb59b66

Please sign in to comment.