diff options
author | Leah Rowe <leah@libreboot.org> | 2024-06-30 16:23:32 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-06-30 16:23:32 +0100 |
commit | c62dbdbe82abfbca4dfb2802a4e154e74b7a5a4f (patch) | |
tree | 807c1a59f8e3b3b2764e261d8dca0e6a0f0462ac /script/trees | |
parent | 89a81a2910f34eb3c131c8cbfa14dc17356cd665 (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-x | script/trees | 2 |
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" |