Fix inconsistency with build dotfile names

This commit is contained in:
Tim Hockin 2022-06-12 20:01:00 -07:00
parent a4b3b3ff08
commit d8842d7546
1 changed files with 2 additions and 2 deletions

View File

@ -195,9 +195,9 @@ test: $(BUILD_DIRS)
@./test_e2e.sh @./test_e2e.sh
TEST_TOOLS := $(shell ls _test_tools) 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 build -t $(REGISTRY)/test/$$(basename $<) $<
@docker images -q $(REGISTRY)/test/$$(basename $<) > $@ @docker images -q $(REGISTRY)/test/$$(basename $<) > $@