From 1326c5d41801b2465699a513cf47247b62108489 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Fri, 13 Oct 2023 20:22:27 +0200 Subject: [PATCH] scripts/modules.sh: move site feeds to the front of the module list We don't want OpenWrt packages to replace Gluon packages by accident; the same logic applies to packages from site feeds. This gives site feeds a higher precedence than gluon/packages, but that is unlikely to cause any issues. Gluon base packages still have an even higher precedence. --- scripts/modules.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/modules.sh b/scripts/modules.sh index 78b819c34d..d28d845aa5 100644 --- a/scripts/modules.sh +++ b/scripts/modules.sh @@ -2,7 +2,7 @@ [ ! -f "$GLUON_SITEDIR"/modules ] || . "$GLUON_SITEDIR"/modules # shellcheck disable=SC2086 -FEEDS="$(echo $GLUON_FEEDS $GLUON_SITE_FEEDS | tr ' ' '\n')" +FEEDS="$(echo $GLUON_SITE_FEEDS $GLUON_FEEDS | tr ' ' '\n')" GLUON_MODULES=openwrt