From ba136cc270d1f0fb2aa44fa680a5f6a316fdc42a Mon Sep 17 00:00:00 2001 From: Olivia Appleton Date: Mon, 15 Jul 2024 18:46:51 -0500 Subject: [PATCH] fix conditional --- csharp/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/Makefile b/csharp/Makefile index 6cc042b7..e4a9292e 100644 --- a/csharp/Makefile +++ b/csharp/Makefile @@ -1,7 +1,7 @@ BLUE=\033[0;34m NC=\033[0m # No Color COV?=false -ifeq (COV, true) +ifeq ($(COV),true) cov_args= --collect:"XPlat Code Coverage" else cov_args=