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 fe4fb36 commit 369bb22Copy full SHA for 369bb22
build-image.sh
@@ -122,8 +122,10 @@ pacman --noconfirm -U --overwrite '*' /aur_pkgs/*
122
rm -rf /var/cache/pacman/pkg
123
124
# install override packages
125
-pacman --noconfirm -U --overwrite '*' /override_pkgs/*
126
-rm -rf /var/cache/pacman/pkg
+if [ -n "${PACKAGE_OVERRIDES}" ]; then
+ pacman --noconfirm -U --overwrite '*' /override_pkgs/*
127
+ rm -rf /var/cache/pacman/pkg
128
+fi
129
130
# Install the new iptables
131
# See https://gitlab.archlinux.org/archlinux/packaging/packages/iptables/-/issues/1
0 commit comments