Skip to content

Commit 6a7f6df

Browse files
committed
fix: try to manage composer update correctly
1 parent dfe6ee5 commit 6a7f6df

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

scripts/_common.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,15 @@ install_ldap_addressbook_contextmenu_plugins() {
3131

3232
# Install net_LDAP
3333
export COMPOSER_ALLOW_SUPERUSER=1
34-
ynh_composer_exec --commands="require kolab/net_ldap3"
34+
ynh_composer_exec --commands="require kolab/net_ldap3 --update-with-all-dependencies"
3535

3636
# Install contextmenu and automatic_addressbook plugins
3737
# https://plugins.roundcube.net/packages/sblaisot/automatic_addressbook
3838
# https://plugins.roundcube.net/packages/johndoh/contextmenu
3939
ynh_composer_exec --commands="require \
4040
johndoh/contextmenu $contextmenu_version \
41-
sblaisot/automatic_addressbook $automatic_addressbook_version"
41+
sblaisot/automatic_addressbook $automatic_addressbook_version \
42+
--update-with-all-dependencies"
4243

4344
installed_plugins+=" 'contextmenu', 'automatic_addressbook',"
4445

@@ -48,7 +49,7 @@ install_ldap_addressbook_contextmenu_plugins() {
4849
}
4950

5051
install_carddav_plugin(){
51-
ynh_composer_exec --commands="require roundcube/carddav $carddav_version --with-all-dependencies"
52+
ynh_composer_exec --commands="require roundcube/carddav $carddav_version --update-with-all-dependencies"
5253

5354
carddav_tmp_config="../conf/carddav.config.inc.php"
5455
carddav_server=0

0 commit comments

Comments
 (0)