From 1a5f54e57666c481bd1b2ffcda7435e07422ff39 Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Tue, 27 Jan 2026 18:09:37 -0300 Subject: [PATCH] chore: Restore restart.sh and update botlib submodule with new log format --- botlib | 2 +- restart.sh | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100755 restart.sh diff --git a/botlib b/botlib index da75820..a8ed131 160000 --- a/botlib +++ b/botlib @@ -1 +1 @@ -Subproject commit da758206b4df2a5402d89517d03c292687ec5b36 +Subproject commit a8ed131b3beb793c630e31a7153c5d5186f932d1 diff --git a/restart.sh b/restart.sh new file mode 100755 index 0000000..52ed606 --- /dev/null +++ b/restart.sh @@ -0,0 +1,9 @@ +export RUST_LOG=info +pkill rustc -9 +pkill botserver -9 +pkill botui -9 +cd botserver +cargo build +cargo run -- --noconsole & +cd ../botui +cargo run &