1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-29 04:17:41 +02:00

exit immediately after login command run (#5183)

This commit is contained in:
Kyle Spearrin 2023-05-03 14:15:32 -04:00 committed by GitHub
parent 419a041739
commit b4a96c2365
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -157,7 +157,7 @@ export class Program {
async () => await this.main.logout() async () => await this.main.logout()
); );
const response = await command.run(email, password, options); const response = await command.run(email, password, options);
this.processResponse(response); this.processResponse(response, true);
} }
}); });