corrected minor bug

This commit is contained in:
lakshmikanth2001 2021-11-23 05:49:42 +05:30
parent bc4f356bb7
commit 129d7c6552

View file

@ -248,7 +248,7 @@ export abstract class BaseConfigurationResolverService extends AbstractVariableR
}
}
}
while ((matches = BaseConfigurationResolverService.USER_DEFINED_PARAMETERS.exec(object)) !== null) {
while ((matches = BaseConfigurationResolverService.USER_DEFINED_VARIABLES_PATTERN.exec(object)) !== null) {
if (matches.length === 4) {
const command = matches[1];
if (variables.indexOf(command) < 0) {