mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 10:43:55 +00:00
Don't update FTL when there is a core update (as this will update FTL a second time). Fixes #1516
This commit is contained in:
parent
6823a62644
commit
f1146a3443
1 changed files with 4 additions and 1 deletions
|
@ -117,7 +117,10 @@ main() {
|
|||
echo "::: FTL: up to date"
|
||||
fi
|
||||
|
||||
if ${FTL_update}; then
|
||||
# Logic: Don't update FTL when there is a core update available
|
||||
# since the core update will run the installer which will itself
|
||||
# re-install (i.e. update) FTL
|
||||
if ${FTL_update} && ! ${core_update}; then
|
||||
echo ":::"
|
||||
echo "::: FTL out of date"
|
||||
FTLdetect
|
||||
|
|
Loading…
Reference in a new issue