From 224a1cc4eaed1aadfbf0d2c81358c8ca65ecd775 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Mon, 15 Apr 2024 19:28:14 -0400 Subject: [PATCH] Don't try to show uptime on busybox systems --- configs/shells/bash/info.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/configs/shells/bash/info.sh b/configs/shells/bash/info.sh index 31426fa..af92ec5 100644 --- a/configs/shells/bash/info.sh +++ b/configs/shells/bash/info.sh @@ -18,7 +18,11 @@ elif [ $(uname -s | grep -c MINGW) -gt 0 ]; then # Windows else # Linux-y things echo -e "${green}Platform:$reset_color $(uname -o) $(uname -r)" - echo -e "${green}Uptime:$reset_color $(uptime -p)" + + # If the `uptime` binary is *not* busybox, we can show it + if [ $(uptime -V | grep -c busybox) -eq 0 ]; then + echo -e "${green}Uptime:$reset_color $(uptime -p)" + fi fi # Determine if $EWCONFIG_ROOT contains uncommitted changes