From 0f768cb4360aa0bcb68c1df43c35b8f0134423fd Mon Sep 17 00:00:00 2001 From: Tim Hockin Date: Tue, 14 Jun 2022 11:50:58 -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 762a481..19aeae3 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 $<) > $@