1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 06:13:38 +00:00

Add support for using a proxy when running bw update (#7347)

Co-authored-by: Daniel James Smith <djsmith85@users.noreply.github.com>
This commit is contained in:
Daniel James Smith
2024-12-10 15:36:14 +01:00
committed by GitHub
parent 2fd2d2759d
commit 99008267e6
2 changed files with 10 additions and 5 deletions

View File

@@ -428,7 +428,10 @@ export class Program extends BaseProgram {
writeLn("", true);
})
.action(async () => {
const command = new UpdateCommand(this.serviceContainer.platformUtilsService);
const command = new UpdateCommand(
this.serviceContainer.platformUtilsService,
this.serviceContainer.apiService,
);
const response = await command.run();
this.processResponse(response);
});