From: Matthias Kruk Date: Sun, 1 Aug 2021 06:19:24 +0000 (+0900) Subject: testbot: Add dependency on inst X-Git-Url: https://git.corax.cc/?a=commitdiff_plain;h=bf2bdfc9ed6ab401d1a3941fe40091127281b897;p=foundry testbot: Add dependency on inst Testbot calls functions from the inst module but it does not include the module upon startup, making it impossible to start the bot. This commit makes testbot include the "inst" module before entering the main() function. --- diff --git a/testbot.sh b/testbot.sh index 5fe1523..93b5b82 100644 --- a/testbot.sh +++ b/testbot.sh @@ -212,7 +212,7 @@ main() { exit 1 fi - if ! include "log" "opt" "ipc" "foundry/msg" "foundry/context"; then + if ! include "log" "opt" "ipc" "inst" "foundry/msg" "foundry/context"; then exit 1 fi