diff --git a/bot.sh b/bot.sh index dbd6a8f..94384e9 100755 --- a/bot.sh +++ b/bot.sh @@ -9,8 +9,10 @@ api_url="https://api.telegram.org/bot${TELEGRAM_DNS_TOKEN}/" botid="6040192441" bot_tmpdir="/tmp/tpdnsbot/" [ -d "${bot_tmpdir}" ] || { - mkdir "${bot_tmpdir}" || printf "error: can't write to /tmp\n" - exit 2 + mkdir "${bot_tmpdir}" || { + printf "error: can't write to /tmp\n" + exit 2 + } } exec 2>"${bot_tmpdir}/error.log"