From 05b59f39d6a90068b4fe8cc94115cbd31d152f59 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Mon, 1 Jul 2024 13:03:04 +0100 Subject: [PATCH] trees: fix bad rm -Rf command (-Rf, not Rf) Signed-off-by: Leah Rowe --- script/trees | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/trees b/script/trees index 33a0967..78aa94f 100755 --- a/script/trees +++ b/script/trees @@ -38,7 +38,7 @@ main() [ -z "$project" ] && for p in $(ls -1 config/git); do ./update trees $_f "$p" || $err "!./update trees $_f $p" [ "$XBMK_RELEASE" != "y" ] || singletree "$p" || \ - x_ rm Rf "src/$p/$p"; continue + x_ rm -Rf "src/$p/$p"; continue done && return 0 [ -f "config/git/$project/pkg.cfg" ] || $err "'$project' not defined"