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:
DL6ER 2017-06-04 12:40:57 +02:00
parent 6823a62644
commit f1146a3443
No known key found for this signature in database
GPG key ID: 00135ACBD90B28DD

View file

@ -117,7 +117,10 @@ main() {
echo "::: FTL: up to date" echo "::: FTL: up to date"
fi 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 ":::"
echo "::: FTL out of date" echo "::: FTL out of date"
FTLdetect FTLdetect