From 487399e18f6565e70347bbf672e968b2aa53d6ca Mon Sep 17 00:00:00 2001 From: Hyperling Date: Wed, 6 May 2026 17:36:27 -0700 Subject: [PATCH] Try fixing the notification message from being TBD/TBD. --- rc_shared.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/rc_shared.sh b/rc_shared.sh index 947317b..905fde8 100644 --- a/rc_shared.sh +++ b/rc_shared.sh @@ -600,13 +600,15 @@ eval "$(declare -F | grep -v _ | sed 's/-f /-fx /')" #log "\n\n`date` - Run 'update-shared' to update." title=TBD message=TBD - reload-shared && { + success=0 + reload-shared || success=1 + if [[ $success == 0 ]]; then title="env-shared Updated" message="Updated with 'reload-shared'." - } || { + else title="env-shared Updates Available" message="Update with 'reload-shared'." - } + fi if [[ -d /sdcard ]]; then termux-notification \ -t "$title" \