This commit is contained in:
Christoph 2022-09-26 16:11:41 +02:00
commit 9fdecd8783

View File

@ -656,6 +656,23 @@ else
fatal "$(cat $log_file)"
fi
echo ""
echo ""
echo "You might want to deactivate some plugins in the configuration file, e.g. the plugin 'carddav'.."
echo ""
echononl "continue [yes/no]: "
read OK
OK="$(echo "$OK" | tr '[:upper:]' '[:lower:]')"
while [[ "$OK" != "yes" ]] && [[ "$OK" != "no" ]] ; do
echononl "Wrong entry! - repeat [yes/no]: "
read OK
done
[[ $OK = "yes" ]] || fatal "Abbruch durch User"
echononl " Update dependencies by running 'php composer.phar update --no-dev'"
php composer.phar --no-interaction update --no-dev > ${script_dir}/log/update_roundcube-${ROUNDCUBE_VERSION}-dependencies.${backup_date}.log 2>&1
if [[ $? -eq 0 ]]; then