From 130c725f01409acc951112aec5781f0223d3ebb3 Mon Sep 17 00:00:00 2001 From: Paul Philippov Date: Wed, 24 Aug 2022 19:24:55 -0400 Subject: [PATCH] wording --- general/overlay/usr/sbin/sysupgrade | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/general/overlay/usr/sbin/sysupgrade b/general/overlay/usr/sbin/sysupgrade index 10883c7d..1629e1b7 100755 --- a/general/overlay/usr/sbin/sysupgrade +++ b/general/overlay/usr/sbin/sysupgrade @@ -108,9 +108,9 @@ free_resources() { self_update() { if echo "${args}" | grep "rootfs" || echo "${args}" | grep "kernel" || echo "${args}" | grep -- "-n" >/dev/null 2>&1; then - echo -e "\nOffline upgrade or Overlay clean, skip sysupgrade version check." + echo -e "\nOffline operations." else - echo -e "\nOnline upgrade, checking sysupgrade version..." + echo -e "\nChecking for sysupgrade update..." curl -s -k -L -o /tmp/sysupgrade "https://raw.githubusercontent.com/OpenIPC/firmware/master/general/overlay/usr/sbin/sysupgrade" if [ -f /tmp/sysupgrade ] && grep -q "#!/bin/sh" /tmp/sysupgrade; then dstv=$(grep scr_version /tmp/sysupgrade | head -1 | cut -f 2 -d '=') @@ -121,10 +121,10 @@ self_update() { exec /tmp/sysupgrade ${args} exit 1 else - echo "Ok, version match." + echo "Same version. No update required." fi else - echo -e "\nVersion check failed. Possible network connection problem, script is corrupt or not found. Continue with bundled version." + echo -e "\nVersion checking failed, proceeding with the installed version." fi fi }