Revert "fix detecting ci env var to set coverage"

This reverts commit e9307ad158.
This commit is contained in:
Basile Burg 2019-01-03 03:04:59 +01:00
parent e9307ad158
commit b416de96eb
1 changed files with 1 additions and 1 deletions

View File

@ -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 = \