From: Stephen Rothwell Date: Wed, 29 May 2024 04:59:26 +0000 (+1000) Subject: fetch_trees: fix up for sub trees X-Git-Url: https://git.ozlabs.org/?a=commitdiff_plain;h=03303e36f1a00d98dfd74d5153e28676fb5c55f0;p=next-scripts fetch_trees: fix up for sub trees We don't fetch them --- diff --git a/fetch_trees b/fetch_trees index 2369879..a6276b3 100755 --- a/fetch_trees +++ b/fetch_trees @@ -47,6 +47,10 @@ for name in $trees; do continue fi + if [ "$(get_url "$name")" = 'linux-next' ]; then + continue + fi + printf '%s: %s\n' "$name" "$type" fun="fetch_$type" tfun=$(type -t "$fun")