From 48db04a95bccbd9125588ac083529cc04d18b6a4 Mon Sep 17 00:00:00 2001 From: tw93 Date: Mon, 2 Feb 2026 17:15:32 +0800 Subject: [PATCH] fix: add comment for clarity in safe_sudo_remove function --- lib/core/file_ops.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/file_ops.sh b/lib/core/file_ops.sh index 7d15fdd..a4e739b 100644 --- a/lib/core/file_ops.sh +++ b/lib/core/file_ops.sh @@ -366,7 +366,7 @@ safe_sudo_remove() { local output local ret - output=$(sudo rm -rf "$path" 2>&1) + output=$(sudo rm -rf "$path" 2>&1) # safe_remove ret=$? if [[ $ret -eq 0 ]]; then