From b416de96ebb2282a16a13a64093f2a2e7411828e Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Thu, 3 Jan 2019 03:04:59 +0100 Subject: [PATCH] Revert "fix detecting ci env var to set coverage" This reverts commit e9307ad158003ce903323ea450d7623391ab3044. --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 121ba89..3f3d6eb 100644 --- a/makefile +++ b/makefile @@ -13,7 +13,7 @@ LIB_SRC := \ $(shell find libdparse/src/dparse/ -name "*.d")\ $(shell find libddoc/src -name "*.d") \ $(shell find stdx-allocator/source -name "*.d") -CI_COV := $(shell [[ "${CI}" == "TRUE" ]] && echo -cov || echo "") +CI_COV := $(shell [[ ${CI} == "TRUE" ]] && echo -cov || echo "") PROJECT_SRC := $(shell find src/ -name "*.d") SRC := $(LIB_SRC) $(PROJECT_SRC) INCLUDE_PATHS = \