We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7d2341 commit 624baf8Copy full SHA for 624baf8
.github/jobs/configure-checks/setup_configure_image.sh
@@ -11,17 +11,17 @@ case $distro_id in
11
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"
+ php_line="php-${p} ${php_line}"
15
done
16
- apt-get install composer $php_line -y ;;
+ apt-get install composer ${php_line} -y ;;
17
*)
18
apt-get update; apt-get full-upgrade -y
19
apt-get install pkg-config make bats autoconf -y
20
21
for p in curl gd mysql xml zip; do
22
23
24
25
esac
26
27
# Build the configure file
0 commit comments