From e9307ad158003ce903323ea450d7623391ab3044 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Wed, 2 Jan 2019 23:27:00 +0100 Subject: [PATCH] fix detecting ci env var to set coverage --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 3f3d6eb..121ba89 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 = \