chore(@keycard makefile): extend condition to accept env variable as true and 1 values
This commit is contained in:
parent
9af84a25d6
commit
41672271dc
4
Makefile
4
Makefile
|
@ -394,7 +394,9 @@ export STATUSKEYCARDGO_LIBDIR
|
|||
|
||||
STATUSKEYCARDGO_RULE := build-lib
|
||||
ifeq ($(TEST_ENVIRONMENT),true)
|
||||
STATUSKEYCARDGO_RULE := build-mocked-lib
|
||||
STATUSKEYCARDGO_RULE := build-mocked-lib
|
||||
else ifeq ($(TEST_ENVIRONMENT),1)
|
||||
STATUSKEYCARDGO_RULE := build-mocked-lib
|
||||
endif
|
||||
|
||||
status-keycard-go: $(STATUSKEYCARDGO)
|
||||
|
|
Loading…
Reference in New Issue