site  contact  subhomenews

Version update buglet fixed

November 14, 2025 — BarryK

When you click on the desktop "update" icon, a terminal will appear and the progress of the update will display. There is an error message, that the devx .specs file is missing, for example 'devx_7.0.30_amd64.specs'. This is none-fatal, but nevertheless should be fixed.

I have added code into /usr/local/easy_version/easy-update-devx, line 201:

#20251114
if [ ! -f devx_${latestVER}_${DISTRO_TARGETARCH}.specs ];then
echo "$(gettext 'Downloading') devx_${latestVER}_${DISTRO_TARGETARCH}.specs ..."
wget -t 1 -T 10 ${SFS_REPO_URL}/easyos/${DISTRO_BINARY_COMPAT}/${DISTRO_COMPAT_VERSION}/devx_${latestVER}_${DISTRO_TARGETARCH}.specs >/dev/null 2>&1
[ $? -ne 0 ] && rm -f devx_${latestVER}_${DISTRO_TARGETARCH}.specs 2>/dev/null
fi
chown root:root devx_${latestVER}_${DISTRO_TARGETARCH}.specs

I have been doing other stuff the last few days, but will get back into working on EasyOS.   

Tags: easy