From f9d5598f0bd6b0f587caab5d570a11cc129044b5 Mon Sep 17 00:00:00 2001 From: xdrm-brackets Date: Tue, 20 Feb 2018 14:15:42 +0100 Subject: [PATCH] +fix 'web' spy with composer-install instead of composer-update --- metactl/ci/web.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metactl/ci/web.sh b/metactl/ci/web.sh index f4eb3af..2a87e5c 100644 --- a/metactl/ci/web.sh +++ b/metactl/ci/web.sh @@ -27,7 +27,7 @@ while true; do git submodule update --remote; # 3. Update composer - docker exec php-fpm bash -c "cd /vhost; composer update"; + docker exec php-fpm bash -c "cd /vhost; composer install"; # 4. Re-build js/scss docker exec php-fpm bash -c "cd /vhost; npm install; npm run build";