about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--gotify.sh.example6
1 files changed, 3 insertions, 3 deletions
diff --git a/gotify.sh.example b/gotify.sh.example
index 91d4f45..667db58 100644
--- a/gotify.sh.example
+++ b/gotify.sh.example
@@ -1,8 +1,8 @@
-#!/usr/local/bin/bash
+#!/bin/bash
 
 curl --request POST \
-  --url 'https://gotify.tildeverse.org/message?token=redacted' \
+  --url 'https://gotify.tildeverse.org/message?token=APIKEYHERE' \
     --header 'accept: application/json' \
       --header 'content-type: application/json' \
-        --header 'x-gotify-key: redacted' \
+        --header 'x-gotify-key: APIKEYHERE' \
           --data '{  "message": "A hero is needed in #institute",  "priority": 5,  "title": "Admin Request" }'