From 19da0361f785cf83785ec8a809a5217c3d718e00 Mon Sep 17 00:00:00 2001 From: Tom Wiesing Date: Mon, 16 Nov 2020 15:53:53 +0100 Subject: [PATCH] blind_update: Update WissKI dependencies --- distillery/utils/blind_update.sh | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/distillery/utils/blind_update.sh b/distillery/utils/blind_update.sh index 37efdb4..08d74ea 100644 --- a/distillery/utils/blind_update.sh +++ b/distillery/utils/blind_update.sh @@ -3,11 +3,14 @@ # This utility script can be used to blindly update all dependencies to their latest versions. # It does not perform any checking whatsoever. +# update the main modules cd /var/www/data/project || exit 1 - -# composer install updates chmod u+rw web/sites/default/ composer update -# update the dabatabase -drush -y updatedb \ No newline at end of file +# update the db +drush -y updatedb + +# update the wisski dependencies +cd /var/www/data/project/web/modules/contrib/wisski || exit 1 +composer update \ No newline at end of file