summaryrefslogtreecommitdiff
path: root/cli/tools/bundle.rs
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2023-04-12 14:54:28 -0400
committerGitHub <noreply@github.com>2023-04-12 14:54:28 -0400
commit9c255b2843b3446c7ac6592eb8e318972eb5f1f8 (patch)
tree02b02d4a7ce3077435c0add9774d053003110f15 /cli/tools/bundle.rs
parent66a22d231af0681450b84d1bdbc0b585f0a728ee (diff)
refactor: `ProcState::build` -> `ProcState::from_flags` (#18672)
Diffstat (limited to 'cli/tools/bundle.rs')
-rw-r--r--cli/tools/bundle.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tools/bundle.rs b/cli/tools/bundle.rs
index e5531d7e1..77b4f8a46 100644
--- a/cli/tools/bundle.rs
+++ b/cli/tools/bundle.rs
@@ -41,7 +41,7 @@ pub async fn bundle(
let module_specifier = &module_specifier;
async move {
log::debug!(">>>>> bundle START");
- let ps = ProcState::from_options(cli_options).await?;
+ let ps = ProcState::from_cli_options(cli_options).await?;
let graph =
create_graph_and_maybe_check(vec![module_specifier.clone()], &ps)
.await?;