lib.sh: Simplify rmgit()

Signed-off-by: Leah Rowe <leah@libreboot.org>
25.04_branch
Leah Rowe 2025-05-02 10:52:38 +01:00
parent 61407551ca
commit a13e53ba16
1 changed files with 2 additions and 5 deletions

View File

@ -39,11 +39,8 @@ mksha512sum()
rmgit() rmgit()
{ {
( x_ find "$1" -name ".git" -exec rm -Rf {} +
cd "$1" || $err "!cd gitrepo $1" x_ find "$1" -name ".gitmodules" -exec rm -Rf {} +
find . -name ".git" -exec rm -Rf {} + || $err "!rm .git $1"
find . -name ".gitmodules" -exec rm -Rf {} + || $err "!rm .gitmod $1"
) || $err "Cannot remove .git/.gitmodules in $1"
} }
# can grab from the internet, or copy locally. # can grab from the internet, or copy locally.