Skip to content

Commit

Permalink
Fix ImageMagick v6 Ubuntu compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
printfn committed Oct 23, 2024
1 parent 2c5cb83 commit 7de5824
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions web/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
set -euo pipefail
cd "$(dirname "$0")"

# Ubuntu 24.04 doesn't ship with ImageMagick v7
if ! type magick &>/dev/null; then
alias magick convert
fi

npm ci
npm run check

Expand Down

0 comments on commit 7de5824

Please sign in to comment.