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

Commit 64bc17f

Browse files
vaskoudanbucholtz
authored andcommitted
fix(config): Setting readConfigJson constant wrong (#761)
1 parent db85903 commit 64bc17f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ export function generateContext(context?: BuildContext): BuildContext {
119119
setProcessEnvVar(Constants.ENV_TS_CONFIG, tsConfigPathValue);
120120
Logger.debug(`tsconfig set to ${tsConfigPathValue}`);
121121

122-
const readConfigJson = resolve(getConfigValue(context, '--readConfigJson', null, Constants.ENV_READ_CONFIG_JSON, Constants.ENV_READ_CONFIG_JSON.toLowerCase(), 'true'));
122+
const readConfigJson = getConfigValue(context, '--readConfigJson', null, Constants.ENV_READ_CONFIG_JSON, Constants.ENV_READ_CONFIG_JSON.toLowerCase(), 'true');
123123
setProcessEnvVar(Constants.ENV_READ_CONFIG_JSON, readConfigJson);
124124
Logger.debug(`readConfigJson set to ${readConfigJson}`);
125125

0 commit comments

Comments
 (0)