Skip to content

Commit 87c5dd6

Browse files
committed
Fixup
1 parent 959241d commit 87c5dd6

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/jobs/configure-checks/setup_configure_image.sh

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,19 @@ case $distro_id in
99
"ID=fedora")
1010
dnf install pkg-config make bats autoconf automake util-linux -y
1111
dnf install composer php -y ;;
12+
php_line="php"
13+
for p in gd mysql xml zip; do
14+
php_line="php-${p} $php_line"
15+
done
16+
apt-get install composer $php_line -y ;;
1217
*)
1318
apt-get update; apt-get full-upgrade -y
1419
apt-get install pkg-config make bats autoconf -y
15-
apt-get install composer php-{curl,gd,mysql,xml,zip} -y ;;
20+
php_line="php"
21+
for p in curl gd mysql xml zip; do
22+
php_line="php-${p} $php_line"
23+
done
24+
apt-get install composer $php_line -y ;;
1625
esac
1726

1827
# Build the configure file

0 commit comments

Comments
 (0)