From db628ee3f3b02d9a9317142978267394798015cc Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sat, 8 Aug 2015 18:41:19 +0100 Subject: [PATCH 1/2] Update 2015-07-21-automating-sculpin-with-jenkins.md --- .../_posts/2015-07-21-automating-sculpin-with-jenkins.md | 8 ++++++++ 1 file changed, 8 insertions(+) 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 03f1008a..29d4e887 100644 --- a/source/_posts/2015-07-21-automating-sculpin-with-jenkins.md +++ b/source/_posts/2015-07-21-automating-sculpin-with-jenkins.md @@ -95,6 +95,14 @@ I'll probably also take the raw shell script out of Jenkins and save it in a tex Since publishing this post, I've added some more items to the original build script. +### Updating Composer + + if [ -f composer.json ]; then + /usr/local/bin/composer + fi + +Updates project dependencies via [Composer](https://getcomposer.org/doc/00-intro.md#introduction) if composer.json exists. + ### Updating Sculpin Dependencies if [ -f sculpin.json ]; then From 3b2898a21e9d4930239cca3d219e4b7390b048be Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sat, 8 Aug 2015 18:46:16 +0100 Subject: [PATCH 2/2] Update 2015-07-21-automating-sculpin-with-jenkins.md --- source/_posts/2015-07-21-automating-sculpin-with-jenkins.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 29d4e887..6b19baf4 100644 --- a/source/_posts/2015-07-21-automating-sculpin-with-jenkins.md +++ b/source/_posts/2015-07-21-automating-sculpin-with-jenkins.md @@ -98,7 +98,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 + /usr/local/bin/composer update fi Updates project dependencies via [Composer](https://getcomposer.org/doc/00-intro.md#introduction) if composer.json exists.