From 85de8fc0c5175494a6a1c224902eccea447f9294 Mon Sep 17 00:00:00 2001 From: Eric Ernst Date: Mon, 6 Oct 2025 14:16:14 -0400 Subject: [PATCH] make: fix coverage target (#313) Address capitalization error Signed-off-by: Eric Ernst --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 144c2153..65c030f7 100644 --- a/Makefile +++ b/Makefile @@ -101,7 +101,7 @@ coverage: test --ignore-filename-regex=".pb.swift" \ --ignore-filename-regex=".proto" \ --ignore-filename-regex=".grpc.swift" \ - $(BUILD_BIN_DIR)/ContainerizationPackageTests.xctest/Contents/MacOS/ContainerizationPackageTests > $(COV_REPORT_FILE) + $(BUILD_BIN_DIR)/containerizationPackageTests.xctest/Contents/MacOS/containerizationPackageTests > $(COV_REPORT_FILE) @echo Code coverage report generated: $(COV_REPORT_FILE) .PHONY: integration