Skip to content

Commit 0e14d9d

Browse files
committed
lint
1 parent 3a7db8b commit 0e14d9d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

crates/build-guest/src/main.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -196,16 +196,16 @@ fn run_stage3_exe_commits(project_names: &[&str], workspace_dir: &Path) -> Resul
196196
println!("{LOG_PREFIX} Starting build for config: {build_config:?}...");
197197

198198
let project_dir = project_dir.to_str().expect("Invalid path");
199-
let app_config = builder::load_app_config(&project_dir)?;
199+
let app_config = builder::load_app_config(project_dir)?;
200200

201201
// 1. Build ELF
202-
let elf = builder::build(&project_dir, &build_config.features)?;
202+
let elf = builder::build(project_dir, &build_config.features)?;
203203
println!("{LOG_PREFIX} Built ELF");
204204

205205
// 2. Transpile ELF to VM Executable
206206
let vmexe_filename = format!("app{}.vmexe", build_config.filename_suffix);
207207
let app_exe = builder::transpile(
208-
&project_dir,
208+
project_dir,
209209
elf,
210210
Some(&vmexe_filename), // Pass filename directly
211211
app_config.clone(),

0 commit comments

Comments
 (0)