From 6a3d8a9600a8eabceaeae54bb0394d89ff9372fa Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Sun, 9 Jun 2024 11:43:47 +0100 Subject: git.sh: fix deletion path in nuke() i accidentally forgot to include src/ in the prefix Signed-off-by: Leah Rowe --- include/git.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/git.sh b/include/git.sh index f0f6f210..71dd61a1 100755 --- a/include/git.sh +++ b/include/git.sh @@ -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 } -- cgit v1.2.1