From 44641aee1aade536ec1ded46aca3b4c4b64d5812 Mon Sep 17 00:00:00 2001 From: Matthias Kruk Date: Tue, 30 Nov 2021 19:41:38 +0900 Subject: [PATCH] distbot: Include ipc module Distbot is using functions from the ipc module without including it, causing it to silently fail. This commit modifies distbot to include the ipc module at startup. --- distbot.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distbot.sh b/distbot.sh index 181393a..e934323 100755 --- a/distbot.sh +++ b/distbot.sh @@ -322,7 +322,7 @@ main() { exit 1 fi - if ! include "log" "opt" "queue" "inst"; then + if ! include "log" "opt" "queue" "inst" "ipc"; then exit 1 fi -- 2.47.3