Skip to content

Commit

Permalink
docker exec
Browse files Browse the repository at this point in the history
  • Loading branch information
refcell committed Oct 16, 2023
1 parent e4428f8 commit fc9ae39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/stages/src/stages.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ impl Stages<'_> {
Arc::clone(&artifacts),
Arc::clone(&monorepo),
)),
Box::new(prestate::Prestate::new(Rc::clone(&monorepo))),
Box::new(prestate::Prestate::new(Arc::clone(&monorepo))),
Box::new(allocs::Allocs::new(
Arc::clone(&artifacts),
Arc::clone(&monorepo),
Expand Down Expand Up @@ -129,7 +129,7 @@ impl Stages<'_> {
let artifacts = Arc::new(Artifacts::from(
std::env::current_dir()?.join(".devnet").as_path(),
));
// let artifacts = Rc::new(Artifacts::from(self.config.artifacts.as_path()));
// let artifacts = Arc::new(Artifacts::from(self.config.artifacts.as_path()));

let docker_stages = self.docker(artifacts, monorepo, composer);
let inner = self.inner.as_ref().unwrap_or(&docker_stages);
Expand Down

0 comments on commit fc9ae39

Please sign in to comment.