Skip to content

Commit

Permalink
Fix more
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Nov 26, 2024
1 parent 4d77910 commit b0aa013
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions turbopack/crates/turbopack-env/src/embeddable.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ pub struct EmbeddableProcessEnv {
#[turbo_tasks::value_impl]
impl EmbeddableProcessEnv {
#[turbo_tasks::function]
pub fn new(prior: Vc<Box<dyn ProcessEnv>>) -> Vc<Self> {
EmbeddableProcessEnv { prior }.cell()
pub fn new(prior: ResolvedVc<Box<dyn ProcessEnv>>) -> Result<Vc<Self>> {
Ok(EmbeddableProcessEnv { prior }.cell())
}
}

Expand Down

0 comments on commit b0aa013

Please sign in to comment.