Merge pull request #2 from FelixHeal/patch-1

Adding param for webhook bot name
This commit is contained in:
Thomas Cole 2019-04-05 12:38:15 -04:00 committed by GitHub
commit 6e0861bd08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,6 +18,10 @@ while (( "$#" )); do
message="$2"
shift 2
;;
-b|--botname)
botname="$2"
shift 2
;;
--)
shift
break
@ -34,5 +38,6 @@ while (( "$#" )); do
done
url="https://discordapp.com/api/webhooks/URL"
curl -H "Content-Tyep: application/json" -X POST -d '{"content": "'$mention' '$message'"}' $url
curl -H "Content-Tyep: application/json" -X POST -d '{"username": "'$botname'", "content": "'$mention' '$message'"}' $url
echo ""