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

Commit d41f3cc

Browse files
feat(libs/references): added no-cache argument into th forge build command
1 parent 4dfa570 commit d41f3cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/solc-wrapper/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ pub fn get_ast_for_file(base_path: String) -> Result<Vec<SolcAstFile>, SolcWrapp
3333
let solc = command::ForgeCommand::default();
3434

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

3939
let init_time = SystemTime::now();

0 commit comments

Comments
 (0)