Navigation Menu

Skip to content
This repository has been archived by the owner on May 1, 2020. It is now read-only.

Commit

Permalink
fix(config): Setting readConfigJson constant wrong (#761)
Browse files Browse the repository at this point in the history
  • Loading branch information
vaskou authored and danbucholtz committed Feb 17, 2017
1 parent db85903 commit 64bc17f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/config.ts
Expand Up @@ -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}`);

Expand Down

0 comments on commit 64bc17f

Please sign in to comment.