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.

(cherry picked from commit a20a25e)
  • Loading branch information
neocturne committed Oct 16, 2023
1 parent eddc003 commit 5d7aad7
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 5d7aad7

Please sign in to comment.