diff options
author | Leah Rowe <leah@libreboot.org> | 2024-06-29 19:47:25 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-06-29 19:47:25 +0100 |
commit | 02f7417952063150fc6071427b23384082333b7d (patch) | |
tree | dc32a4d842901c3228b172a60e97a733020fd0bc /script/trees | |
parent | f7ec42d379c7dc03ce9ac8f04726649d91bb25e2 (diff) |
trees: better skip-clean string in handle_src_tree
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 de9cc869..da6069eb 100755 --- a/script/trees +++ b/script/trees @@ -139,7 +139,7 @@ handle_src_tree() if [ ! -d "$cdir" ]; then if [ "$mode" = "distclean" ] || \ [ "$mode" = "crossgcc-clean" ]; then - printf "Directory %s missing; skip\n" "$cdir" 1>&2 + printf "Dir '%s' missing; skip clean\n" "$cdir" 1>&2 return 1 fi x_ ./update trees -f "$project" "$target" |