Maybe not needed, but also run composer to update roundcube dependencies.

This commit is contained in:
Christoph 2017-10-12 04:12:27 +02:00
parent a84ca0aa6f
commit 392ae2753a

View File

@ -453,6 +453,15 @@ else
fatal "$(cat $log_file)"
fi
echononl " Update dependencies by running 'php composer.phar update --no-dev'"
php composer.phar update --no-dev > ${_src_base_dir}/log/update_roundcube-${ROUNDCUBE_VERSION}-dependencies.${backup_date}.log 2>&1
if [[ $? -eq 0 ]]; then
echo_ok
else
echo_failed
error "$(cat ${_src_base_dir}/log/update_roundcube-${ROUNDCUBE_VERSION}-dependencies.${backup_date}.log)"
fi
echononl " Index build-in addressbook"
${WEBSITE_BASEDIR}/roundcubemail-${ROUNDCUBE_VERSION}/bin/indexcontacts.sh > $log_file 2>&1
if [[ $? -eq 0 ]]; then