Skip to content

Commit

Permalink
Fix missing magick binary
Browse files Browse the repository at this point in the history
  • Loading branch information
ruanformigoni committed Apr 28, 2024
1 parent 62b0359 commit 204bfe8
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions deploy/flatimage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,21 @@
# @file : flatimage
######################################################################

set -e

function fetch()
{
# Fetch Magick
wget -O bin/magick "https://github.com/ruanformigoni/imagemagick-static-musl/releases/download/cc3f21c/magick-x86_64"
wget -O bin/magick-license "https://raw.githubusercontent.com/ImageMagick/ImageMagick/main/LICENSE"
chmod +x bin/magick

# Fetch coreutils
wget "https://github.com/ruanformigoni/coreutils-static/releases/download/d7f4cd2/coreutils-x86_64.tar.xz"

# Extracts a bin/... folder
tar xf "coreutils-x86_64.tar.xz"

# Fetch Magick
wget -O bin/magick "https://github.com/ruanformigoni/imagemagick-static-musl/releases/download/cc3f21c/magick-x86_64"
wget -O bin/magick-license "https://raw.githubusercontent.com/ImageMagick/ImageMagick/main/LICENSE"
chmod +x bin/magick

# Fetch lsof
wget -O./bin/lsof "https://github.com/ruanformigoni/lsof-static-musl/releases/download/e1a88fb/lsof-x86_64"

Expand Down

0 comments on commit 204bfe8

Please sign in to comment.