From 3501318d847b1fa94c5a548b58b98d22f44ec3e3 Mon Sep 17 00:00:00 2001 From: "Kay Marquardt (Gnadelwartz)" Date: Fri, 19 Mar 2021 14:01:30 +0100 Subject: [PATCH] bashbot.rc: fix missing open { in pipe name --- bashbot.rc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bashbot.rc b/bashbot.rc index 67026cd..5cb3802 100755 --- a/bashbot.rc +++ b/bashbot.rc @@ -5,7 +5,7 @@ # # tested on: ubuntu, opensuse, debian # -#### $$VERSION$$ v1.51-dev-9-gcbd74a7 +#### $$VERSION$$ v1.51-dev-10-g12157b3 # shellcheck disable=SC2009 # shellcheck disable=SC2181 # shellcheck disable=SC2250 @@ -42,7 +42,7 @@ name="" # your bot installation dir bashbotdir="/usr/local/telegram-bot-bash" databotdir="${bashbotdir}/data-bot-bash" -FIFO="$databotdir}/webhook-fifo-${name}" +FIFO="${databotdir}/webhook-fifo-${name}" # programs to run bashbot="cd ${bashbotdir}; ${bashbotdir}/bashbot.sh"