mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-21 21:53:43 +00:00
Show version information after an web only update (#5788)
This commit is contained in:
commit
74d451a9c7
2 changed files with 7 additions and 1 deletions
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue