From f72a72af96d9a7e957a966360d7eb0217a9aa4fb Mon Sep 17 00:00:00 2001
From: Leah Rowe <leah@libreboot.org>
Date: Sun, 21 Jan 2024 22:11:00 +0000
Subject: don't download projects on release archives

the changelog file is only present in releases, so
use the presence of this file for the test.

someone who wants to fetch projects within a release
archive can simply use the git repo, or delete the file.

Signed-off-by: Leah Rowe <leah@libreboot.org>
---
 script/update/trees | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

(limited to 'script/update')

diff --git a/script/update/trees b/script/update/trees
index fa812f54..100f5f15 100755
--- a/script/update/trees
+++ b/script/update/trees
@@ -48,7 +48,9 @@ main()
 build_projects()
 {
 	[ $# -gt 0 ] && x_ ./update trees $_f $@
-	[ "$mode" = "fetch" ] && eval "fetch_project_repo; return 0;"
+
+	[ "$mode" = "fetch" ] && [ ! -f "CHANGELOG" ] && \
+		eval "fetch_project_repo; return 0;"
 
 	load_project_config "$cfgsdir"
 
@@ -121,7 +123,8 @@ handle_defconfig()
 handle_src_tree()
 {
 	target_dir="${cfgsdir}/${target}"
-	[ "$mode" = "fetch" ] && eval "fetch_project_trees; return 1;"
+	[ "$mode" = "fetch" ] && [ ! -f "CHANGELOG" ] && \
+		eval "fetch_project_trees; return 1;"
 
 	load_project_config "$target_dir"
 
-- 
cgit v1.2.1