Skip to content

Commit

Permalink
scripts/modules.sh: move site feeds to the front of the module list
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
neocturne authored and ecsv committed Feb 27, 2024
1 parent 1eedd47 commit 1326c5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/modules.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 1326c5d

Please sign in to comment.