mirror of
https://github.com/denoland/deno.git
synced 2025-07-24 05:35:33 +00:00
fix: always derive http client from cli flags (#17029)
I'm not sure how to test this. It doesn't seem to have an existing test. Closes #15921
This commit is contained in:
parent
8c026dab92
commit
8972ebc9cc
6 changed files with 42 additions and 49 deletions
|
@ -195,7 +195,7 @@ async fn run_subcommand(flags: Flags) -> Result<i32, AnyError> {
|
|||
Ok(0)
|
||||
}
|
||||
DenoSubcommand::Upgrade(upgrade_flags) => {
|
||||
tools::upgrade::upgrade(upgrade_flags).await?;
|
||||
tools::upgrade::upgrade(flags, upgrade_flags).await?;
|
||||
Ok(0)
|
||||
}
|
||||
DenoSubcommand::Vendor(vendor_flags) => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue