From efd1db1ca37019333df27ae3f37e019f3eb13376 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Sat, 4 Oct 2025 08:03:12 +0100 Subject: release.sh: remove eval statement in nuke() the symlink check is what made me use eval, but the symlink check is not required, since i check every entry that goes in nuke.list anyway. not having that symlink check is safer than having an eval statement on that line. Signed-off-by: Leah Rowe --- include/release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/release.sh') diff --git a/include/release.sh b/include/release.sh index a2eb28a6..3657f6af 100644 --- a/include/release.sh +++ b/include/release.sh @@ -92,7 +92,7 @@ nuke() if [ -d "${r%/*}" ]; then x_ cd "${r%/*}" - dx_ "eval [ -L \"\$fx\" ] || x_ rm -Rf" "$rsrc/$1" + dx_ "x_ rm -Rf" "$rsrc/$1" fi } -- cgit v1.2.1