bashbot.rc: fix missing open { in pipe name

This commit is contained in:
Kay Marquardt (Gnadelwartz) 2021-03-19 14:01:30 +01:00
parent 12157b380d
commit 3501318d84
1 changed files with 2 additions and 2 deletions

View File

@ -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"