Skip to content

Commit 31957fc

Browse files
committed
Disable Imagick for 8.4 for now
1 parent 0b4ec66 commit 31957fc

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ All notable changes to this project will be documented in this file.
1111

1212
### Features
1313

14+
- Added support for PHP 8.4
1415
- Add support for Ubuntu 24.04 Noble release (#4411 #4451)
1516
- Add support for Jailed SSH (#4052 #4245) @rjd222
1617
- Implement CLI for Quick Install Apps (#4443)

bin/v-add-web-php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,11 @@ if [[ ${version:0:1} == "8" ]]; then
7575
mph=$(echo "$mph" | sed -e "s/php$version-json//")
7676
fi
7777

78+
# Check if version is 8.4 and drop imagick
79+
if [[ $(echo "$version 8.4" | awk '{print ($1 < $2)}') == 1 ]]; then
80+
mph=$(echo "$mph" | sed -e "/php$version-imagick//")
81+
fi
82+
7883
if ! echo "$DB_SYSTEM" | grep -w 'mysql' > /dev/null; then
7984
mph=$(echo "$mph" | sed -e "s/php$version-mysql//")
8085
fi

0 commit comments

Comments
 (0)