From 26283c9722e72f33c86bd4fbfd834387a6b3a46b Mon Sep 17 00:00:00 2001 From: Aidan Oldershaw Date: Wed, 9 Dec 2020 21:12:17 -0500 Subject: [PATCH] install wget Signed-off-by: Aidan Oldershaw --- pipelines/php-larvel-app-testing.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pipelines/php-larvel-app-testing.yml b/pipelines/php-larvel-app-testing.yml index f67a21b..db11c94 100644 --- a/pipelines/php-larvel-app-testing.yml +++ b/pipelines/php-larvel-app-testing.yml @@ -25,8 +25,10 @@ jobs: args: - -c - | + set -e + apt-get update - apt-get install -y git unzip + apt-get install -y git unzip wget EXPECTED_CHECKSUM="$(wget -q -O - https://composer.github.io/installer.sig)" php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"