1
0
mirror of https://github.com/pi-hole/pi-hole synced 2024-10-23 00:09:23 +00:00

Show version information after an web only update

Signed-off-by: Christian König <github@yubiuser.dev>
This commit is contained in:
Christian König 2024-09-30 21:04:55 +02:00
parent c0e39087bc
commit bcc3a7e35e
No known key found for this signature in database
2 changed files with 7 additions and 1 deletions

View File

@ -221,6 +221,12 @@ main() {
echo -e " ${INFO} Local version file information updated." echo -e " ${INFO} Local version file information updated."
fi fi
# if there was only a web update, show the new versions
# (on core and FTL updates, this is done as part of the installer run)
if [[ "${web_update}" == true && "${FTL_update}" == false && "${core_update}" == false ]]; then
"${PI_HOLE_BIN_DIR}"/pihole version
fi
echo "" echo ""
exit 0 exit 0
} }

View File

@ -2434,7 +2434,7 @@ main() {
if [[ "${INSTALL_TYPE}" == "Update" ]]; then if [[ "${INSTALL_TYPE}" == "Update" ]]; then
printf "\\n" printf "\\n"
"${PI_HOLE_BIN_DIR}"/pihole version --current "${PI_HOLE_BIN_DIR}"/pihole version
fi fi
} }