1
0
mirror of https://github.com/bitwarden/cli synced 2025-12-16 08:13:21 +00:00

update jslib

This commit is contained in:
Kyle Spearrin
2020-09-23 11:59:30 -04:00
parent 0e5cc66b67
commit 7733b95a71
3 changed files with 6 additions and 4 deletions

View File

@@ -136,7 +136,8 @@ export class Program extends BaseProgram {
await this.exitIfAuthed();
const command = new LoginCommand(this.main.authService, this.main.apiService,
this.main.cryptoFunctionService, this.main.syncService, this.main.i18nService,
this.main.environmentService, this.main.passwordGenerationService);
this.main.environmentService, this.main.passwordGenerationService,
this.main.platformUtilsService);
const response = await command.run(email, password, cmd);
this.processResponse(response);
}