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

feat: Expand critical system component protection in clean user logic and apply minor shell script fixes.

This commit is contained in:
Tw93
2025-12-17 20:42:25 +08:00
parent 611254848d
commit 0427dbb6c0
4 changed files with 6 additions and 5 deletions

2
mole
View File

@@ -198,7 +198,7 @@ show_version() {
if command -v csrutil > /dev/null; then
sip_status=$(csrutil status 2> /dev/null | grep -o "enabled\|disabled" || echo "Unknown")
# Capitalize first letter
sip_status="$(tr '[:lower:]' '[:upper:]' <<< ${sip_status:0:1})${sip_status:1}"
sip_status="$(tr '[:lower:]' '[:upper:]' <<< "${sip_status:0:1}")${sip_status:1}"
else
sip_status="Unknown"
fi