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
1 changed files with 1 additions and 1 deletions

View File

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