Skip to content

Commit

Permalink
reenable yarn install
Browse files Browse the repository at this point in the history
  • Loading branch information
aroralanuk committed Nov 3, 2023
1 parent 29820bf commit 614da35
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions rust/utils/run-locally/src/ethereum.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ use crate::{INFRA_PATH, MONOREPO_ROOT_PATH};
#[apply(as_task)]
pub fn start_anvil(config: Arc<Config>) -> AgentHandles {
log!("Installing typescript dependencies...");
// let yarn_monorepo = Program::new("yarn").working_dir(MONOREPO_ROOT_PATH);
// yarn_monorepo.clone().cmd("install").run().join();
// if !config.is_ci_env {
// // don't need to clean in the CI
// yarn_monorepo.clone().cmd("clean").run().join();
// }
// yarn_monorepo.clone().cmd("build").run().join();
let yarn_monorepo = Program::new("yarn").working_dir(MONOREPO_ROOT_PATH);
yarn_monorepo.clone().cmd("install").run().join();
if !config.is_ci_env {
// don't need to clean in the CI
yarn_monorepo.clone().cmd("clean").run().join();
}
yarn_monorepo.clone().cmd("build").run().join();

if !config.is_ci_env {
// Kill any existing anvil processes just in case since it seems to have issues getting cleaned up
Expand Down

0 comments on commit 614da35

Please sign in to comment.