This commit is contained in:
mfahampshire
2024-11-06 13:18:55 +01:00
parent c7d025baba
commit 4d8d784f39
+9 -7
View File
@@ -126,9 +126,10 @@ fn main() -> io::Result<()> {
let mut file = File::create(format!("{}/{}-commands.md", WRITE_PATH, last_word.unwrap()))?;
writeln!(
file,
"# {} Binary Commands (Autogenerated)",
format!("`{}`", last_word.unwrap())
"# `{}` Binary Commands (Autogenerated)",
last_word.unwrap()
)?;
writeln!(
file,
"\nThese docs are autogenerated by the [`autodocs`](https://github.com/nymtech/nym/tree/max/new-docs-framework/documentation/autodoc) script."
@@ -151,9 +152,10 @@ fn main() -> io::Result<()> {
let mut file = File::create(format!("{}/{}-commands.md", WRITE_PATH, last_word.unwrap()))?;
writeln!(
file,
"# {} Binary Commands (Autogenerated)",
format!("`{}`", last_word.unwrap())
"# `{}` Binary Commands (Autogenerated)",
last_word.unwrap()
)?;
writeln!(
file,
"\nThese docs are autogenerated by the [`autodocs`](https://github.com/nymtech/nym/tree/max/new-docs-framework/documentation/autodoc) script."
@@ -190,9 +192,9 @@ 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"
let last_word = get_last_word_from_filepath(main_command).unwrap();
if (last_word == "nym-node" || last_word == "nym-api" || last_word == "nymvisor")
&& subcommand == "run"
{
info!("SKIPPING {} {}", main_command, subcommand);
} else {