]> git.ozlabs.org Git - next-scripts/commitdiff
fetch_trees: fix up for sub trees
authorStephen Rothwell <sfr@canb.auug.org.au>
Wed, 29 May 2024 04:59:26 +0000 (14:59 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Wed, 29 May 2024 04:59:26 +0000 (14:59 +1000)
We don't fetch them

fetch_trees

index 23698793e0a675ee3b43486cd78162e93ab6e9b9..a6276b3a90910287e938412e88c3878d0b2788fc 100755 (executable)
@@ -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")