From d8842d75469a7027806c1a679ee2390459ab6041 Mon Sep 17 00:00:00 2001 From: Tim Hockin Date: Sun, 12 Jun 2022 20:01:00 -0700 Subject: [PATCH] Fix inconsistency with build dotfile names --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index cba3e06..0c3cbcb 100644 --- a/Makefile +++ b/Makefile @@ -195,9 +195,9 @@ test: $(BUILD_DIRS) @./test_e2e.sh TEST_TOOLS := $(shell ls _test_tools) -test-tools: $(foreach tool, $(TEST_TOOLS), .container.test_tool.$(tool)) +test-tools: $(foreach tool, $(TEST_TOOLS), .container-test_tool.$(tool)) -.container.test_tool.%: _test_tools/% _test_tools/%/* +.container-test_tool.%: _test_tools/% _test_tools/%/* @docker build -t $(REGISTRY)/test/$$(basename $<) $< @docker images -q $(REGISTRY)/test/$$(basename $<) > $@