Skip to content
Snippets Groups Projects
Unverified Commit c0afb9cc authored by Matthias Schiffer's avatar Matthias Schiffer
Browse files

contrib: lsupgrade: do not search the OpenWrt "packages" feed

Iterating over all the package directories in the OpenWrt feed takes a
while, even though it doesn't contain any upgrade scripts. Skip the
whole directory.
parent 2924afe5
No related branches found
No related tags found
No related merge requests found
...@@ -28,7 +28,7 @@ fi ...@@ -28,7 +28,7 @@ fi
pushd "$(dirname "$0")/.." >/dev/null pushd "$(dirname "$0")/.." >/dev/null
find ./package packages -name Makefile | while read -r makefile; do find ./package packages -name Makefile | grep -v '^packages/packages/' | while read -r makefile; do
dir="$(dirname "$makefile")" dir="$(dirname "$makefile")"
pushd "$dir" >/dev/null pushd "$dir" >/dev/null
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment