print script name

This commit is contained in:
Quaternions 2025-04-08 14:34:09 -07:00
parent cee52e31be
commit c766b8b0cc
Signed by: Quaternions
GPG Key ID: D0DF5964F79AC131

@ -116,6 +116,9 @@ async fn review(config:ReviewConfig)->Result<(),ReviewError>{
//load source into current.lua
tokio::fs::write("current.lua",source.as_str()).await.map_err(ReviewError::WriteCurrent)?;
// print script name
println!("script name: {}",script_response.Name);
//prompt action in terminal
//wait for input
let script_action;