mirror of
https://github.com/octoleo/telegram-bot-bash.git
synced 2024-11-22 15:35:09 +00:00
move individual debug checks to mycommands.sh
This commit is contained in:
parent
550387bdbc
commit
2d48670680
@ -8,7 +8,7 @@
|
|||||||
# #### if you start to develop your own bot, use the clean version of this file:
|
# #### if you start to develop your own bot, use the clean version of this file:
|
||||||
# #### mycommands.clean
|
# #### mycommands.clean
|
||||||
#
|
#
|
||||||
#### $$VERSION$$ v0.98-0-g5b5447e
|
#### $$VERSION$$ v0.98-1-g550387b
|
||||||
#
|
#
|
||||||
|
|
||||||
# uncomment the following lines to overwrite info and help messages
|
# uncomment the following lines to overwrite info and help messages
|
||||||
@ -240,6 +240,14 @@ else
|
|||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# debug function called on start, stop of bot, interactive and background processes
|
||||||
|
# if your bot was started with debug as second argument
|
||||||
|
# $1 current date, $2 from where the function wqs called, $3 ... $n optional information
|
||||||
|
my_debug_checks() {
|
||||||
|
# example check because my bot creates a wrong file, this was becuase an empty variable
|
||||||
|
[ -f ".jssh" ] && printf "%s: %s\n" "${1}" "Ups, found file \"${PWD:-.}/.jssh\"! =========="
|
||||||
|
}
|
||||||
|
|
||||||
# place your processing functions here
|
# place your processing functions here
|
||||||
|
|
||||||
# $1 search parameter
|
# $1 search parameter
|
||||||
|
Loading…
Reference in New Issue
Block a user