Skip to content

Commit 624baf8

Browse files
committed
Further cleanup
1 parent a7d2341 commit 624baf8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ case $distro_id in
1111
dnf install composer php -y
1212
php_line="php"
1313
for p in gd mysql xml zip; do
14-
php_line="php-${p} $php_line"
14+
php_line="php-${p} ${php_line}"
1515
done
16-
apt-get install composer $php_line -y ;;
16+
apt-get install composer ${php_line} -y ;;
1717
*)
1818
apt-get update; apt-get full-upgrade -y
1919
apt-get install pkg-config make bats autoconf -y
2020
php_line="php"
2121
for p in curl gd mysql xml zip; do
22-
php_line="php-${p} $php_line"
22+
php_line="php-${p} ${php_line}"
2323
done
24-
apt-get install composer $php_line -y ;;
24+
apt-get install composer ${php_line} -y ;;
2525
esac
2626

2727
# Build the configure file

0 commit comments

Comments
 (0)