From 50869fc8c8249d16e113a8597d81c7701f3cd911 Mon Sep 17 00:00:00 2001 From: Vasilis Koutsopoulos Date: Fri, 17 Feb 2017 03:04:40 +0200 Subject: [PATCH] fix(readConfigJson): Setting readConfigJson constant wrong --- src/util/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/config.ts b/src/util/config.ts index 647697ca..c7678e76 100644 --- a/src/util/config.ts +++ b/src/util/config.ts @@ -119,7 +119,7 @@ export function generateContext(context?: BuildContext): BuildContext { setProcessEnvVar(Constants.ENV_TS_CONFIG, tsConfigPathValue); Logger.debug(`tsconfig set to ${tsConfigPathValue}`); - const readConfigJson = resolve(getConfigValue(context, '--readConfigJson', null, Constants.ENV_READ_CONFIG_JSON, Constants.ENV_READ_CONFIG_JSON.toLowerCase(), 'true')); + const readConfigJson = getConfigValue(context, '--readConfigJson', null, Constants.ENV_READ_CONFIG_JSON, Constants.ENV_READ_CONFIG_JSON.toLowerCase(), 'true'); setProcessEnvVar(Constants.ENV_READ_CONFIG_JSON, readConfigJson); Logger.debug(`readConfigJson set to ${readConfigJson}`);