diff options
author | Leah Rowe <leah@libreboot.org> | 2024-07-01 13:03:04 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-07-01 13:03:04 +0100 |
commit | 2ab1d994906d7ff54ec8723030ef57a56a2047a4 (patch) | |
tree | 86844144dc210cd43422f2ca45e820f4dee43eac /script | |
parent | d6ff009e207537b7f925e33456d24fe90ca23fd1 (diff) |
trees: fix bad rm -Rf command (-Rf, not Rf)
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script')
-rwxr-xr-x | script/trees | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/trees b/script/trees index fff1d890..4ab0d406 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" |