Skip to content

Commit 7e60dc0

Browse files
authored
Update all.bats
1 parent 3073deb commit 7e60dc0

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/jobs/configure-checks/all.bats

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,11 @@ run_configure () {
5252

5353
repo-install () {
5454
args=$(translate $@)
55-
${cmd} install $args -y >/dev/null
55+
if [ "$distro_id" = "ID=arch" ]; then
56+
${cmd} $args -Sy --noconfirm >/dev/null
57+
else
58+
${cmd} install $args -y >/dev/null
59+
fi
5660
}
5761

5862
repo-remove () {

0 commit comments

Comments
 (0)