pull/404/head
Paul Philippov 2022-08-24 19:24:55 -04:00
parent b7eeb93186
commit 130c725f01
1 changed files with 4 additions and 4 deletions

View File

@ -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
}