Fix send_message function

This commit is contained in:
adrien 2022-11-23 10:19:47 +01:00
parent 8baca09ad0
commit 72334260c3
Signed by: adrien
GPG Key ID: 4F17BEA67707AC21
1 changed files with 5 additions and 6 deletions

View File

@ -15,20 +15,19 @@ set -o nounset
# Don't hide errors within pipes # Don't hide errors within pipes
set -o pipefail set -o pipefail
# Set your API key here # set your API key here
key= key=
# Set your chat id here # set your chat id here
chat_id= chat_id=
function send_message() { function send_message() {
if ! [ $# -eq 0 ]; then if ! [ $# -eq 0 ]; then
curl --silent --show-error --fail --request POST "https://api.telegram.org/$key/sendMessage" --data chat_id="$chat_id" --data text="$1" --output /dev/null curl --silent --show-error --fail --request POST "https://api.telegram.org/$key/sendMessage" --data chat_id="$chat_id" --data text="$1" --output /dev/null
exit else
echo "No argument supplied, please specify the message to send"
exit 1
fi fi
echo "No argument supplied, please specify the message to send"
exit 1
} }
function backup_vaultwarden { function backup_vaultwarden {