diff --git a/advanced/Scripts/update.sh b/advanced/Scripts/update.sh index 8a35ef2e..2ccad27c 100755 --- a/advanced/Scripts/update.sh +++ b/advanced/Scripts/update.sh @@ -221,6 +221,12 @@ main() { echo -e " ${INFO} Local version file information updated." 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 "" exit 0 } diff --git a/automated install/basic-install.sh b/automated install/basic-install.sh index 9428b05a..b948b8a5 100755 --- a/automated install/basic-install.sh +++ b/automated install/basic-install.sh @@ -2434,7 +2434,7 @@ main() { if [[ "${INSTALL_TYPE}" == "Update" ]]; then printf "\\n" - "${PI_HOLE_BIN_DIR}"/pihole version --current + "${PI_HOLE_BIN_DIR}"/pihole version fi }