1
0
mirror of https://github.com/tw93/Mole.git synced 2026-02-04 09:46:44 +00:00

fix: add comment for clarity in safe_sudo_remove function

This commit is contained in:
tw93
2026-02-02 17:15:32 +08:00
parent 34bbf82b96
commit 48db04a95b

View File

@@ -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