git.sh: fix deletion path in nuke()
i accidentally forgot to include src/ in the prefix Signed-off-by: Leah Rowe <leah@libreboot.org>audit2-merge1
parent
ab4c4d406f
commit
14bba2d789
|
@ -181,7 +181,7 @@ move_repo()
|
|||
nuke()
|
||||
{
|
||||
e "config/${1%/}/nuke.list" f missing || while read -r nukefile; do
|
||||
rmf="${2%/}/$nukefile" && [ -L "$rmf" ] && continue
|
||||
rmf="src/${2%/}/$nukefile" && [ -L "$rmf" ] && continue
|
||||
e "$rmf" e missing || rm -Rf "$rmf" || $err "!rm $rmf, ${2%/}"
|
||||
done < "config/${1%/}/nuke.list"; return 0
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue