This commit is contained in:
mfahampshire
2024-12-09 14:54:15 +01:00
parent 93a995f011
commit 5d3a5a022f
+6 -5
View File
@@ -127,7 +127,7 @@ fn main() -> io::Result<()> {
writeln!(
file,
"# {} Binary Commands (Autogenerated)",
format!("`{}`", last_word.unwrap())
format_args!("`{}`", last_word.unwrap())
)?;
writeln!(
file,
@@ -152,7 +152,7 @@ fn main() -> io::Result<()> {
writeln!(
file,
"# {} Binary Commands (Autogenerated)",
format!("`{}`", last_word.unwrap())
format_args!("`{}`", last_word.unwrap())
)?;
writeln!(
file,
@@ -190,9 +190,10 @@ fn execute_command_own_file(main_command: &str, subcommand: &str) -> io::Result<
// this check is basically checking for the rare commands (rn just one) that start a process with no params
// perhaps if this list grows we could just add a timeout and shunt the running and writing
// into a thread with a timeout or something but for right now its fine / thats overkill
if get_last_word_from_filepath(main_command).unwrap() == "nym-node" && subcommand == "run"
|| get_last_word_from_filepath(main_command).unwrap() == "nym-api" && subcommand == "run"
|| get_last_word_from_filepath(main_command).unwrap() == "nymvisor" && subcommand == "run"
if (get_last_word_from_filepath(main_command).unwrap() == "nymvisor"
|| get_last_word_from_filepath(main_command).unwrap() == "nym-api"
|| get_last_word_from_filepath(main_command).unwrap() == "nym-node")
&& subcommand == "run"
{
info!("SKIPPING {} {}", main_command, subcommand);
} else {