From e5892e1904b68308cb0c229b1fb626646c181034 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 17 Jul 2024 20:14:56 +0100 Subject: [PATCH] Fix Drupal CI errors --- templates/php/drupal/run.twig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/php/drupal/run.twig b/templates/php/drupal/run.twig index d69cc0c..6f866ba 100755 --- a/templates/php/drupal/run.twig +++ b/templates/php/drupal/run.twig @@ -18,9 +18,9 @@ function ci:test { docker compose version - docker network create traefik_proxy + docker network create traefik_proxy || true - cp --no-clobber .env.example .env + cp --no-clobber .env.example .env || true docker compose build --progress plain @@ -81,7 +81,7 @@ function install { function lint:dockerfile { docker container run --rm -i \ - hadolint/hadolint hadolint --ignore DL3008 --ignore DL3059 -t style "${@}" - < Dockerfile + hadolint/hadolint hadolint --ignore DL3008 --ignore DL3022 --ignore DL3059 -t style "${@}" - < Dockerfile } {% if not php.phpcs is same as false and not php.phpstan is same as false %}