From 4e4194d4a42b5b8c66c96a3b6fd085490e596009 Mon Sep 17 00:00:00 2001 From: "Kay Marquardt (Gnadelwartz)" Date: Thu, 2 May 2019 11:10:55 +0200 Subject: [PATCH] start 0.80 dev --- README.html | 2 +- README.md | 2 +- README.txt | 2 +- bashbot.rc | 2 +- bashbot.sh | 3 ++- commands.sh | 8 ++++---- dev/all-tests.sh | 2 +- dev/git-add.sh | 2 +- dev/hooks/pre-commit.sh | 2 +- dev/hooks/pre-push.sh | 2 +- dev/install-hooks.sh | 2 +- dev/make-dist.sh | 2 +- dev/shellcheck.files | 2 +- dev/version.sh | 2 +- doc/0_install.md | 2 +- doc/1_firstbot.md | 2 +- doc/2_usage.md | 2 +- doc/3_advanced.md | 2 +- doc/4_expert.md | 2 +- doc/5_practice.md | 2 +- doc/6_reference.md | 2 +- doc/7_develop.md | 2 +- doc/8_custom.md | 2 +- examples/README.md | 2 +- examples/background-scripts/run_diskusage.sh | 2 +- examples/background-scripts/run_filecontent.sh | 2 +- examples/background-scripts/run_filename.sh | 2 +- examples/background-scripts/run_notify.sh | 2 +- examples/bashbot-multi.sh | 2 +- examples/bashbot.cron | 2 +- examples/calc.sh | 2 +- examples/notify.sh | 2 +- examples/question.sh | 2 +- examples/send-system-status/botacl | 2 +- examples/send-system-status/mycommands.sh | 4 ++-- modules/aliases.sh | 2 +- modules/background.sh | 2 +- modules/inline.sh | 2 +- mycommands.sh | 2 +- test/ADD-test-new.sh | 2 +- test/ALL-tests.inc.sh | 2 +- test/a-commit-test.sh | 2 +- test/b-example-test.sh | 2 +- test/c-init-test.sh | 2 +- test/d-JSON.sh-test.sh | 2 +- test/d-process_message-test.sh | 2 +- test/d-send_message-test.sh | 2 +- test/d-user_is-test.sh | 2 +- test/e-env-test.sh | 2 +- 49 files changed, 54 insertions(+), 53 deletions(-) diff --git a/README.html b/README.html index 7e82acd..00eb24e 100644 --- a/README.html +++ b/README.html @@ -97,6 +97,6 @@

@Gnadelwartz

That’s it!

If you feel that there’s something missing or if you found a bug, feel free to submit a pull request!

-


VERSION
v0.70-0-g6243be9

+


VERSION
v0.70-0-g8ea9e3b

diff --git a/README.md b/README.md index 403b7a3..18b4d5c 100644 --- a/README.md +++ b/README.md @@ -94,4 +94,4 @@ Well, thats a damn good question ... may be because I'm an Unix/Linux admin from If you feel that there's something missing or if you found a bug, feel free to submit a pull request! -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b diff --git a/README.txt b/README.txt index 52df461..73d8921 100644 --- a/README.txt +++ b/README.txt @@ -133,4 +133,4 @@ health status If you feel that there's something missing or if you found a bug, feel free to submit a pull request! -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b diff --git a/bashbot.rc b/bashbot.rc index 40df97d..2e0a730 100755 --- a/bashbot.rc +++ b/bashbot.rc @@ -1,7 +1,7 @@ #!/bin/sh # description: Start or stop telegram-bash-bot # -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b # shellcheck disable=SC2009 # shellcheck disable=SC2181 diff --git a/bashbot.sh b/bashbot.sh index cb5490f..74cfafd 100755 --- a/bashbot.sh +++ b/bashbot.sh @@ -12,7 +12,7 @@ # This file is public domain in the USA and all free countries. # Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying) # -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b # # Exit Codes: # - 0 sucess (hopefully) @@ -87,6 +87,7 @@ if [ ! -f "${BOTADMIN}" ]; then echo -e "${ORANGE}TO MAKE FIRST USER TYPING '/start' TO BOTADMIN${NC}" read -r token echo "${token}" > "${BOTADMIN}" + [ "${token}" = "" ] && echo '?' > "${BOTADMIN}" fi fi diff --git a/commands.sh b/commands.sh index 7989381..85191b7 100644 --- a/commands.sh +++ b/commands.sh @@ -5,7 +5,7 @@ # This file is public domain in the USA and all free countries. # Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying) # -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b # # shellcheck disable=SC2154 # shellcheck disable=SC2034 @@ -105,15 +105,15 @@ else '/start'*) send_action "${CHAT[ID]}" "typing" _is_botadmin && _markdown_message "You are *BOTADMIN*." - if _is_allowed "start" ; then - _markdown_message "${bot_help}" + if _is_botadmin || _is_allowed "start" ; then + _markdown_message "${bashbot_help}" else _message "You are not allowed to start Bot." fi ;; '/help'*) - _markdown_message "${bot_help}" + _markdown_message "${bashbot_help}" ;; '/leavechat'*) # bot leave chat if user is admin in chat if _is_admin ; then diff --git a/dev/all-tests.sh b/dev/all-tests.sh index 202df41..cbc06c5 100755 --- a/dev/all-tests.sh +++ b/dev/all-tests.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash # this has to run once atfer git clone # and every time we create new hooks -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b # magic to ensure that we're always inside the root of our application, # no matter from which directory we'll run script diff --git a/dev/git-add.sh b/dev/git-add.sh index 10d1a52..612b1be 100755 --- a/dev/git-add.sh +++ b/dev/git-add.sh @@ -3,7 +3,7 @@ # # works together with git pre-push.sh and ADD all changed files since last push -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b # magic to ensure that we're always inside the root of our application, # no matter from which directory we'll run script diff --git a/dev/hooks/pre-commit.sh b/dev/hooks/pre-commit.sh index 897ec9a..79379b7 100755 --- a/dev/hooks/pre-commit.sh +++ b/dev/hooks/pre-commit.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b ############ # NOTE: you MUST run install-hooks.sh again when updating this file! diff --git a/dev/hooks/pre-push.sh b/dev/hooks/pre-push.sh index 17d025e..09ee726 100755 --- a/dev/hooks/pre-push.sh +++ b/dev/hooks/pre-push.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b ############ # NOTE: you MUST run install-hooks.sh again when updating this file! diff --git a/dev/install-hooks.sh b/dev/install-hooks.sh index 72102a7..66cefd6 100755 --- a/dev/install-hooks.sh +++ b/dev/install-hooks.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash # this has to run once atfer git clone # and every time we create new hooks -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b # magic to ensure that we're always inside the root of our application, # no matter from which directory we'll run script diff --git a/dev/make-dist.sh b/dev/make-dist.sh index 48cc207..ed129b0 100755 --- a/dev/make-dist.sh +++ b/dev/make-dist.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash # this has to run once atfer git clone # and every time we create new hooks -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b # magic to ensure that we're always inside the root of our application, # no matter from which directory we'll run script diff --git a/dev/shellcheck.files b/dev/shellcheck.files index 4f78933..2eee57b 100644 --- a/dev/shellcheck.files +++ b/dev/shellcheck.files @@ -1,3 +1,3 @@ # list of additional files to check from shellcheck -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b bashbot.rc diff --git a/dev/version.sh b/dev/version.sh index 2dcda60..e7553e8 100755 --- a/dev/version.sh +++ b/dev/version.sh @@ -1,6 +1,6 @@ #!/bin/bash # -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b # shellcheck disable=SC2016 # # Easy Versioning in git: diff --git a/doc/0_install.md b/doc/0_install.md index e3af61b..9048100 100644 --- a/doc/0_install.md +++ b/doc/0_install.md @@ -63,5 +63,5 @@ The old format is supported for backward compatibility, but may fail for corner #### [Next Create Bot](1_firstbot.md) -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b diff --git a/doc/1_firstbot.md b/doc/1_firstbot.md index 8b85468..335c2c2 100644 --- a/doc/1_firstbot.md +++ b/doc/1_firstbot.md @@ -65,5 +65,5 @@ group. This step is up to you actually. #### [Prev Installation](0_install.md) #### [Next Getting started](2_usage.md) -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b diff --git a/doc/2_usage.md b/doc/2_usage.md index e444344..8d9b89b 100644 --- a/doc/2_usage.md +++ b/doc/2_usage.md @@ -167,5 +167,5 @@ send_action "${CHAT[ID]}" "action" #### [Prev Create Bot](1_firstbot.md) #### [Next Advanced Usage](3_advanced.md) -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b diff --git a/doc/3_advanced.md b/doc/3_advanced.md index 4814414..8571a84 100644 --- a/doc/3_advanced.md +++ b/doc/3_advanced.md @@ -177,5 +177,5 @@ answer_inline_query "$iQUERY_ID" "cached_sticker" "identifier for the sticker" #### [Prev Getting started](2_usage.md) #### [Next Expert Use](4_expert.md) -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b diff --git a/doc/4_expert.md b/doc/4_expert.md index 116e854..6bf1138 100644 --- a/doc/4_expert.md +++ b/doc/4_expert.md @@ -104,5 +104,5 @@ An example crontab is provided in ```examples/bashbot.cron```. #### [Prev Expert Use](4_expert.md) #### [Next Best Practice](5_practice.md) -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b diff --git a/doc/5_practice.md b/doc/5_practice.md index 81c090a..9869155 100644 --- a/doc/5_practice.md +++ b/doc/5_practice.md @@ -153,5 +153,5 @@ The second warning is about an unused variable, this is true because in our exam #### [Prev Best Practice](5_practice.md) #### [Next Functions Reference](6_reference.md) -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b diff --git a/doc/6_reference.md b/doc/6_reference.md index 0ab3014..9613072 100644 --- a/doc/6_reference.md +++ b/doc/6_reference.md @@ -489,5 +489,5 @@ Send Input from Telegram to waiting Interactive Chat. #### [Prev Best Practice](5_practice.md) #### [Next Notes for Developers](7_develop.md) -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b diff --git a/doc/7_develop.md b/doc/7_develop.md index 3138eb7..8a9f0e6 100644 --- a/doc/7_develop.md +++ b/doc/7_develop.md @@ -117,5 +117,5 @@ fi #### [Prev Function Reference](6_reference.md) #### [Next Bashbot Environment](8_custom.md) -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b diff --git a/doc/8_custom.md b/doc/8_custom.md index 1685742..dd00488 100644 --- a/doc/8_custom.md +++ b/doc/8_custom.md @@ -117,5 +117,5 @@ for every poll until the maximum of BASHBOT_SLEEP ms. #### [Prev Notes for Developers](7_develop.md) -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b diff --git a/examples/README.md b/examples/README.md index 0e80f07..3806612 100644 --- a/examples/README.md +++ b/examples/README.md @@ -55,6 +55,6 @@ convert existing bots. **external-use** will contain some examples on how to send messages from external scripts to Telegram chats or users. -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b diff --git a/examples/background-scripts/run_diskusage.sh b/examples/background-scripts/run_diskusage.sh index 8be4ab9..b044b49 100755 --- a/examples/background-scripts/run_diskusage.sh +++ b/examples/background-scripts/run_diskusage.sh @@ -4,7 +4,7 @@ # This file is public domain in the USA and all free countries. # Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying) -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b # adjust your language setting here # https://github.com/topkecleon/telegram-bot-bash#setting-up-your-environment diff --git a/examples/background-scripts/run_filecontent.sh b/examples/background-scripts/run_filecontent.sh index e9654d0..8a617fb 100755 --- a/examples/background-scripts/run_filecontent.sh +++ b/examples/background-scripts/run_filecontent.sh @@ -2,7 +2,7 @@ # file: run_filename # background job to display content of all new files in WATCHDIR # -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b # adjust your language setting here # https://github.com/topkecleon/telegram-bot-bash#setting-up-your-environment diff --git a/examples/background-scripts/run_filename.sh b/examples/background-scripts/run_filename.sh index 0344f12..8b52246 100755 --- a/examples/background-scripts/run_filename.sh +++ b/examples/background-scripts/run_filename.sh @@ -2,7 +2,7 @@ # file: run_filename # background job to display all new files in WATCHDIR # -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b # adjust your language setting here # https://github.com/topkecleon/telegram-bot-bash#setting-up-your-environment diff --git a/examples/background-scripts/run_notify.sh b/examples/background-scripts/run_notify.sh index 9a0684f..2c630cc 100755 --- a/examples/background-scripts/run_notify.sh +++ b/examples/background-scripts/run_notify.sh @@ -4,7 +4,7 @@ # This file is public domain in the USA and all free countries. # Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying) -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b # adjust your language setting here # https://github.com/topkecleon/telegram-bot-bash#setting-up-your-environment diff --git a/examples/bashbot-multi.sh b/examples/bashbot-multi.sh index b412480..8c58619 100755 --- a/examples/bashbot-multi.sh +++ b/examples/bashbot-multi.sh @@ -2,7 +2,7 @@ # file. multibot.sh # description: run multiple telegram bots from one installation # -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b if [ "${2}" = "" ] || [ "${2}" = "-h" ]; then echo "Usage: $0 botname command" diff --git a/examples/bashbot.cron b/examples/bashbot.cron index 83eb241..fe69de4 100644 --- a/examples/bashbot.cron +++ b/examples/bashbot.cron @@ -7,7 +7,7 @@ # This file is public domain in the USA and all free countries. # Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying) # -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b SHELL=/bin/sh diff --git a/examples/calc.sh b/examples/calc.sh index 8b02a9f..1d6b191 100755 --- a/examples/calc.sh +++ b/examples/calc.sh @@ -5,7 +5,7 @@ # This file is public domain in the USA and all free countries. # Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying) -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b # adjust your language setting here # https://github.com/topkecleon/telegram-bot-bash#setting-up-your-environment diff --git a/examples/notify.sh b/examples/notify.sh index 9a0684f..2c630cc 100755 --- a/examples/notify.sh +++ b/examples/notify.sh @@ -4,7 +4,7 @@ # This file is public domain in the USA and all free countries. # Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying) -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b # adjust your language setting here # https://github.com/topkecleon/telegram-bot-bash#setting-up-your-environment diff --git a/examples/question.sh b/examples/question.sh index aaacffd..437692b 100755 --- a/examples/question.sh +++ b/examples/question.sh @@ -5,7 +5,7 @@ # This file is public domain in the USA and all free countries. # Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying) -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b # adjust your language setting here # https://github.com/topkecleon/telegram-bot-bash#setting-up-your-environment diff --git a/examples/send-system-status/botacl b/examples/send-system-status/botacl index 97f9cd4..314feb6 100644 --- a/examples/send-system-status/botacl +++ b/examples/send-system-status/botacl @@ -1,7 +1,7 @@ # file: botacl # a user not listed here, will return false from 'user_is_allowed' # -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b # Format: # user:ressource:chat diff --git a/examples/send-system-status/mycommands.sh b/examples/send-system-status/mycommands.sh index 82379e0..30b7750 100644 --- a/examples/send-system-status/mycommands.sh +++ b/examples/send-system-status/mycommands.sh @@ -5,7 +5,7 @@ # to show how you can customize bashbot by only editing mycommands.sh # NOTE: this is not tested, simply copied from original source and reworked! # -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b # # shellcheck disable=SC2154 # shellcheck disable=SC2034 @@ -43,7 +43,7 @@ mycommands() { local cmd="${arg[0]}" local msg="" - if user_is_botadmin || user_is_allowed "${USER[ID]}" "systemstatus"; then + if user_is_botadmin "${USER[ID]}" || user_is_allowed "${USER[ID]}" "systemstatus"; then case "$cmd" in '/md'*) msg="$(cat /proc/mdstat)";; '/smb'*) msg="$(smbstatus)" ;; diff --git a/modules/aliases.sh b/modules/aliases.sh index 78c5b98..bc4674a 100644 --- a/modules/aliases.sh +++ b/modules/aliases.sh @@ -5,7 +5,7 @@ # This file is public domain in the USA and all free countries. # Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying) # -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b # # source from commands.sh to use the aliases diff --git a/modules/background.sh b/modules/background.sh index 86091e4..ea3ea27 100644 --- a/modules/background.sh +++ b/modules/background.sh @@ -5,7 +5,7 @@ # This file is public domain in the USA and all free countries. # Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying) # -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b # source from commands.sh if you want ro use interactive or background jobs diff --git a/modules/inline.sh b/modules/inline.sh index d696846..30f3dfc 100644 --- a/modules/inline.sh +++ b/modules/inline.sh @@ -5,6 +5,6 @@ # This file is public domain in the USA and all free countries. # Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying) # -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b # source from commands.sh to use the inline functions diff --git a/mycommands.sh b/mycommands.sh index 7fa5878..b0bb106 100644 --- a/mycommands.sh +++ b/mycommands.sh @@ -2,7 +2,7 @@ # files: mycommands.sh.dist # copy to mycommands.sh and add all your commands and functions here ... # -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b # # shellcheck disable=SC2154 # shellcheck disable=SC2034 diff --git a/test/ADD-test-new.sh b/test/ADD-test-new.sh index c12f9c7..2d89c76 100755 --- a/test/ADD-test-new.sh +++ b/test/ADD-test-new.sh @@ -2,7 +2,7 @@ # # ADD a new test skeleton to test dir, but does not activate test # -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b # magic to ensure that we're always inside the root of our application, # no matter from which directory we'll run script diff --git a/test/ALL-tests.inc.sh b/test/ALL-tests.inc.sh index 7783a9c..918e3e2 100644 --- a/test/ALL-tests.inc.sh +++ b/test/ALL-tests.inc.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b # common variables export TESTME DIRME TESTDIR LOGFILE REFDIR TESTNAME diff --git a/test/a-commit-test.sh b/test/a-commit-test.sh index d014aa4..08fdd76 100755 --- a/test/a-commit-test.sh +++ b/test/a-commit-test.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b ../dev/hooks/pre-commit.sh diff --git a/test/b-example-test.sh b/test/b-example-test.sh index a09734a..0b56fa1 100644 --- a/test/b-example-test.sh +++ b/test/b-example-test.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # file: b-example-test.sh -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b # include common functions and definitions # shellcheck source=test/ALL-tests.inc.sh diff --git a/test/c-init-test.sh b/test/c-init-test.sh index 737af4a..f067bd2 100755 --- a/test/c-init-test.sh +++ b/test/c-init-test.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b # include common functions and definitions # shellcheck source=test/ALL-tests.inc.sh diff --git a/test/d-JSON.sh-test.sh b/test/d-JSON.sh-test.sh index 210dba3..208ac61 100755 --- a/test/d-JSON.sh-test.sh +++ b/test/d-JSON.sh-test.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b # include common functions and definitions # shellcheck source=test/ALL-tests.inc.sh diff --git a/test/d-process_message-test.sh b/test/d-process_message-test.sh index 9b03b08..231afe0 100755 --- a/test/d-process_message-test.sh +++ b/test/d-process_message-test.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b # include common functions and definitions # shellcheck source=test/ALL-tests.inc.sh diff --git a/test/d-send_message-test.sh b/test/d-send_message-test.sh index 6359e13..801077e 100755 --- a/test/d-send_message-test.sh +++ b/test/d-send_message-test.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b # include common functions and definitions # shellcheck source=test/ALL-tests.inc.sh diff --git a/test/d-user_is-test.sh b/test/d-user_is-test.sh index 61168ba..e6ae80b 100755 --- a/test/d-user_is-test.sh +++ b/test/d-user_is-test.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b # include common functions and definitions # shellcheck source=test/ALL-tests.inc.sh diff --git a/test/e-env-test.sh b/test/e-env-test.sh index 720c180..2581184 100755 --- a/test/e-env-test.sh +++ b/test/e-env-test.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -#### $$VERSION$$ v0.70-0-g6243be9 +#### $$VERSION$$ v0.70-0-g8ea9e3b # include common functions and definitions # shellcheck source=test/ALL-tests.inc.sh