File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -196,16 +196,16 @@ fn run_stage3_exe_commits(project_names: &[&str], workspace_dir: &Path) -> Resul
196
196
println ! ( "{LOG_PREFIX} Starting build for config: {build_config:?}..." ) ;
197
197
198
198
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) ?;
200
200
201
201
// 1. Build ELF
202
- let elf = builder:: build ( & project_dir, & build_config. features ) ?;
202
+ let elf = builder:: build ( project_dir, & build_config. features ) ?;
203
203
println ! ( "{LOG_PREFIX} Built ELF" ) ;
204
204
205
205
// 2. Transpile ELF to VM Executable
206
206
let vmexe_filename = format ! ( "app{}.vmexe" , build_config. filename_suffix) ;
207
207
let app_exe = builder:: transpile (
208
- & project_dir,
208
+ project_dir,
209
209
elf,
210
210
Some ( & vmexe_filename) , // Pass filename directly
211
211
app_config. clone ( ) ,
You can’t perform that action at this time.
0 commit comments