From 1a0155d7e4d742e026e5f3525c67612fe1307b1f Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Thu, 30 Jun 2016 01:38:03 +0100 Subject: [PATCH] Install, not update --- source/_posts/2015-07-21-automating-sculpin-with-jenkins.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/_posts/2015-07-21-automating-sculpin-with-jenkins.md b/source/_posts/2015-07-21-automating-sculpin-with-jenkins.md index 27327feb1..da923c68f 100644 --- a/source/_posts/2015-07-21-automating-sculpin-with-jenkins.md +++ b/source/_posts/2015-07-21-automating-sculpin-with-jenkins.md @@ -97,7 +97,7 @@ Since publishing this post, I've added some more items to the original build scr ### Updating Composer if [ -f composer.json ]; then - /usr/local/bin/composer update + /usr/local/bin/composer install fi Updates project dependencies via [Composer](https://getcomposer.org/doc/00-intro.md#introduction) if composer.json exists. @@ -105,10 +105,10 @@ Updates project dependencies via [Composer](https://getcomposer.org/doc/00-intro ### Updating Sculpin Dependencies if [ -f sculpin.json ]; then - sculpin update + sculpin install fi -Runs `sculpin update` on each build if the sculpin.json file exists, to ensure that the required custom bundles and dependencies are installed. +Runs `sculpin install` on each build if the sculpin.json file exists, to ensure that the required custom bundles and dependencies are installed. ### Managing Redirects