get return value
This commit is contained in:
parent
8bb3b8ab65
commit
032cc52921
@ -199,8 +199,11 @@ fn bake(script_path:std::path::PathBuf)->Result<(),anyhow::Error>{
|
|||||||
globals.set("shared",shared_table)?;
|
globals.set("shared",shared_table)?;
|
||||||
}
|
}
|
||||||
|
|
||||||
match lua.load(script).exec(){
|
let call_result:mlua::Result<mlua::Table>=lua.load(script).call(());
|
||||||
Ok(())=>(),
|
match call_result{
|
||||||
|
Ok(ret)=>{
|
||||||
|
println!("gundata={:?}",ret);
|
||||||
|
},
|
||||||
Err(e)=>println!("Lua Error: {e}"),
|
Err(e)=>println!("Lua Error: {e}"),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user