From 24ac15841928b03cfd86df28734af66d4d79904e Mon Sep 17 00:00:00 2001 From: bQUARKz Date: Mon, 19 Jan 2026 18:08:32 +0000 Subject: [PATCH] adjust and fix names --- crates/prometeu/src/main.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/prometeu/src/main.rs b/crates/prometeu/src/main.rs index 191c5b4b..e6c44cda 100644 --- a/crates/prometeu/src/main.rs +++ b/crates/prometeu/src/main.rs @@ -77,12 +77,12 @@ fn main() { match cli.command { Some(Commands::Run { cart }) => { - dispatch(&exe_dir, "prometeu-runtime-desktop", &["--run", &cart]); + dispatch(&exe_dir, "prometeu-runtime", &["--run", &cart]); } Some(Commands::Debug { cart, port }) => { dispatch( &exe_dir, - "prometeu-runtime-desktop", + "prometeu-runtime", &["--debug", &cart, "--port", &port.to_string()], ); } @@ -117,13 +117,13 @@ fn dispatch(exe_dir: &Path, bin_name: &str, args: &[&str]) { if !bin_path.exists() { eprintln!( - "prometeu: command '{}' is not yet available in this distribution", + "prometeu: command '{}' is not yet available in this distribution on {}", match bin_name { "prometeu-runtime-desktop" => "run/debug", "prometeuc" => "build/verify c", "prometeup" => "pack/verify p", _ => bin_name, - } + }, exe_dir.display() ); std::process::exit(1); }