From bf2bdfc9ed6ab401d1a3941fe40091127281b897 Mon Sep 17 00:00:00 2001 From: Matthias Kruk Date: Sun, 1 Aug 2021 15:19:24 +0900 Subject: [PATCH] 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. --- testbot.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.47.3