From 3fdf5cac9d0f661642b58f637e3e6ee931ed4f3b Mon Sep 17 00:00:00 2001 From: Severiano Badajoz Date: Fri, 13 Aug 2021 10:01:10 -0700 Subject: [PATCH] fix: remove spaces in param setup (#2380) --- client/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/Makefile b/client/Makefile index 9b94a995..1169da30 100644 --- a/client/Makefile +++ b/client/Makefile @@ -5,9 +5,9 @@ GENE_SETS := $(if $(GENE_SETS),$(GENE_SETS),../backend/test/fixtures/pbmc3k-gene ANNOTATIONS_FILENAME := $(shell basename $(ANNOTATIONS)) GENE_SETS_FILENAME := $(shell basename $(GENE_SETS)) -CXG_CONFIG := $(if $(CXG_CONFIG), $(CXG_CONFIG),./__tests__/e2e/test_config.yaml) +CXG_CONFIG := $(if $(CXG_CONFIG),$(CXG_CONFIG),./__tests__/e2e/test_config.yaml) -CXG_AUTH_TYPE := $(if $(CXG_AUTH_TYPE), $(CXG_AUTH_TYPE),"test") +CXG_AUTH_TYPE := $(if $(CXG_AUTH_TYPE),$(CXG_AUTH_TYPE),"test") # Packaging