From 8807a69751e896c55969183d624ee58f8799c519 Mon Sep 17 00:00:00 2001 From: Matthias Kruk Date: Thu, 22 Jul 2021 12:07:09 +0900 Subject: [PATCH] dispatchbot: Include inst module Dispatchbot uses functions that are implemented by the inst module, but it does not include the inst module at startup. This commit modifies dispatchbot to include the inst module. --- dispatchbot.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 dispatchbot.sh diff --git a/dispatchbot.sh b/dispatchbot.sh old mode 100644 new mode 100755 index ae6cdfd..0a0f895 --- a/dispatchbot.sh +++ b/dispatchbot.sh @@ -357,7 +357,7 @@ main() { return 1 fi - if ! include "log" "opt" "ipc" "foundry/msg"; then + if ! include "log" "opt" "ipc" "inst" "foundry/msg"; then return 1 fi -- 2.47.3