Skip to content
This repository has been archived by the owner on Jul 3, 2024. It is now read-only.

Commit

Permalink
feat(libs/references): added no-cache argument into th forge build co…
Browse files Browse the repository at this point in the history
…mmand
  • Loading branch information
0xmemorygrinder committed Mar 16, 2024
1 parent 4dfa570 commit d41f3cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/solc-wrapper/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ pub fn get_ast_for_file(base_path: String) -> Result<Vec<SolcAstFile>, SolcWrapp
let solc = command::ForgeCommand::default();

eprintln!("Base path: {}", base_path.clone());
let args = vec![String::from("build"), String::from("--build-info"), /*String::from("--no-cache")*/];
let args = vec![String::from("build"), String::from("--build-info"), String::from("--no-cache")];
let solc = solc.args(args);

let init_time = SystemTime::now();
Expand Down

0 comments on commit d41f3cc

Please sign in to comment.