Skip to content

Commit 3071dd9

Browse files
committed
Fixup
1 parent 774057e commit 3071dd9

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

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

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,23 @@
22

33
set -eux
44

5-
shopt -s extglob globstar
5+
shopt -s extglob
66

77
distro_id=$(grep "^ID=" /etc/os-release)
88

99
# Install everything for configure and testing
10-
shared="pkg-config make rst2pdf autoconf composer bats latexmk"
11-
shared2="$shared python3-{yaml,sphinx} php{,-{fpm,gd,cli,intl,mbstrin,mysql,curl,jsonxml,zip}"
10+
shared1="pkg-config make rst2pdf autoconf composer bats latexmk"
11+
shared2="$shared1 python3-{yaml,sphinx} php{,-{fpm,gd,cli,intl,mbstrin,mysql,curl,jsonxml,zip}"
12+
shared=$(eval echo $shared2)
1213

1314
case $distro_id in
1415
"ID=fedora")
1516
dnf install $shared2 automake util-linux \
1617
python3-sphinx_rtd_theme texlive-cmap -y ;;
1718
*)
1819
apt-get update; apt-get full-upgrade -y ;
19-
echo $shared2 ; \
20-
apt-get install $shared2 \
20+
echo $shared ; \
21+
apt-get install $shared \
2122
python3-sphinx-rtd-theme texlive-latex-{recommended,extra} tex-gyre -y ;;
2223
esac
2324

0 commit comments

Comments
 (0)