From 19b04b5ee31b8fb249def739738ceaae31da00c4 Mon Sep 17 00:00:00 2001 From: Tim Martin Date: Wed, 21 Dec 2022 11:02:12 -0700 Subject: [PATCH] remove set-tmp target since these directories are established in image build --- idc.Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/idc.Makefile b/idc.Makefile index 3492ca88e..ebb867e6c 100644 --- a/idc.Makefile +++ b/idc.Makefile @@ -18,7 +18,7 @@ bootstrap: snapshot-empty default destroy-state up install \ # Rebuilds the Drupal cache .PHONY: cache-rebuild .SILENT: cache-rebuild -cache-rebuild: set-tmp +cache-rebuild: echo "rebuilding Drupal cache..." docker-compose exec -T drupal drush cr -y @@ -200,7 +200,7 @@ static-drupal-image: EXISTING=`docker images -q $$IMAGE` ; \ if test -z "$$EXISTING" ; then \ echo "Building Drupal image with base: $${REPOSITORY}/drupal:$${TAG} " ; \ - docker build --build-arg REPOSITORY=$${REPOSITORY} --build-arg TAG=$${TAG} -t $${IMAGE} .; \ + docker build --build-arg REPOSITORY=$${REPOSITORY} --build-arg TAG=$${TAG} -t $${IMAGE} . && \ docker tag $${IMAGE} ${REPOSITORY}/drupal-static:static ; \ else \ echo "Using existing Drupal image $${EXISTING}" ; \