Skip to content

Commit fcf7939

Browse files
committed
Fixup
1 parent 2d3ff17 commit fcf7939

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,16 @@ set -eux
77
ghtest="$1"
88
export ghtest
99

10-
distro_id=$(grep "^ID=" /etc/os-release)
10+
distro_id="$(grep "^ID=" /etc/os-release)"
11+
1112
if [ "$distro_id" = "ID=arch" ]; then
1213
section_start "What is installed in the default setup"
1314
pacman -Q
1415
section_end
1516
fi
1617

1718
section_start "Install all tools"
18-
distro_id=$(grep "^ID=" /etc/os-release)
19+
distro_id="$(grep "^ID=" /etc/os-release)"
1920

2021
# Install everything for configure and testing
2122
case $distro_id in

0 commit comments

Comments
 (0)