fix(core): update

This commit is contained in:
2019-08-06 17:41:45 +02:00
parent a1aa1543a2
commit b54a5e2fef
4 changed files with 9 additions and 7 deletions

View File

@ -31,7 +31,7 @@ export class Qenv {
);
this.envFilePathAbsolute = plugins.path.join(
plugins.path.resolve(envFileBasePathArg),
'env.yml'
'env.json'
);
this.getRequiredEnvVars();
@ -131,7 +131,7 @@ export class Qenv {
this.logger.log('ok', `found ${requiredEnvVar} as environment variable`);
chosenVar = envVar;
} else if (envFileVar) {
this.logger.log('ok', `found ${requiredEnvVar} as env.yml variable`);
this.logger.log('ok', `found ${requiredEnvVar} as env.json variable`);
chosenVar = envFileVar;
} else if (dockerSecret) {
this.logger.log('ok', `found ${requiredEnvVar} as docker secret`);