Commit 262f466f authored by Franco Fichtner's avatar Franco Fichtner

firmware: better print for changelog fetch if failed

parent f0c8e2f9
...@@ -36,8 +36,11 @@ echo "This will automatically fetch all available updates, apply them," ...@@ -36,8 +36,11 @@ echo "This will automatically fetch all available updates, apply them,"
echo "and reboot if necessary." echo "and reboot if necessary."
echo echo
# always fetch changelogs, we may want to display them at one point echo -n "Fetching change log information, please wait... "
/usr/local/opnsense/scripts/firmware/changelog.sh fetch || true if /usr/local/opnsense/scripts/firmware/changelog.sh fetch; then
echo "done"
fi
echo
if [ -f ${UPGRADE} ]; then if [ -f ${UPGRADE} ]; then
NAME=$(cat ${UPGRADE}) NAME=$(cat ${UPGRADE})
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment