summaryrefslogtreecommitdiff
path: root/script/trees
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2024-06-30 16:23:32 +0100
committerLeah Rowe <leah@libreboot.org>2024-06-30 16:23:32 +0100
commitc62dbdbe82abfbca4dfb2802a4e154e74b7a5a4f (patch)
tree807c1a59f8e3b3b2764e261d8dca0e6a0f0462ac /script/trees
parent89a81a2910f34eb3c131c8cbfa14dc17356cd665 (diff)
trees: only do bare multi-tree clone on git
i forgot to add the check for CHANGELOG Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script/trees')
-rwxr-xr-xscript/trees2
1 files changed, 1 insertions, 1 deletions
diff --git a/script/trees b/script/trees
index cce30980..f5ed5141 100755
--- a/script/trees
+++ b/script/trees
@@ -120,7 +120,7 @@ handle_src_tree()
{
target_dir="$cfgsdir/$target"
- fetch_project "$project"
+ [ -f "CHANGELOG" ] || fetch_project "$project"
load_target_config "$target_dir" || return 1
x_ mkdir -p "$elfdir/$target"