From 5546c578232b686023eee780f0fca93e00f5e6fe Mon Sep 17 00:00:00 2001 From: Koji Hasegawa Date: Sun, 19 Jan 2025 07:20:55 +0900 Subject: [PATCH] Fix commandline argument `--burst-disable-compilation` is to be passed with two dashes see: https://docs.unity3d.com/Packages/com.unity.testtools.codecoverage@1.2/manual/UsingCodeCoverage.html#using-code-coverage-with-burst-compiler --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d06e60b..e1e12a0 100644 --- a/Makefile +++ b/Makefile @@ -57,7 +57,7 @@ define cover $(UNITY) \ $(call base_arguments) \ $(call test_arguments) \ - -burst-disable-compilation \ + --burst-disable-compilation \ -debugCodeOptimization \ -enableCodeCoverage \ -coverageResultsPath $(LOG_DIR) \