1

Ignore case on BusyBox check

This commit is contained in:
Evan Pratten 2024-04-15 19:40:31 -04:00
parent 6ef6da0d24
commit 4628d595f1

View File

@ -20,7 +20,7 @@ else # Linux-y things
echo -e "${green}Platform:$reset_color $(uname -o) $(uname -r)"
# If the `uptime` binary is *not* busybox, we can show it
if [ $(uptime -V 2>&1 | grep -c busybox) -eq 0 ]; then
if [ $(uptime -V 2>&1 | grep -ci busybox) -eq 0 ]; then
echo -e "${green}Uptime:$reset_color $(uptime -p)"
fi
fi