Skip to content

Commit

Permalink
remove set-tmp target since these directories are established in imag…
Browse files Browse the repository at this point in the history
…e build
  • Loading branch information
Tim Martin committed Dec 21, 2022
1 parent 9f19a2f commit 19b04b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions idc.Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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}" ; \
Expand Down

0 comments on commit 19b04b5

Please sign in to comment.