From a5b14fee934ca162ada88804b4c9ab70d9bf1dc2 Mon Sep 17 00:00:00 2001 From: Matthias Kruk Date: Wed, 1 Dec 2021 17:01:07 +0900 Subject: [PATCH] distbot: Include foundry/msg and foundry/context modules Distbot uses functions from foundry/msg and foundry/context without including either of the modules, causing it to be unable to parse incoming messages. This commit modifies distbot so that it includes the two required modules. --- distbot.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distbot.sh b/distbot.sh index e934323..ff54c79 100755 --- a/distbot.sh +++ b/distbot.sh @@ -322,7 +322,7 @@ main() { exit 1 fi - if ! include "log" "opt" "queue" "inst" "ipc"; then + if ! include "log" "opt" "queue" "inst" "ipc" "foundry/msg" "foundry/context"; then exit 1 fi -- 2.47.3