mirror of
https://github.com/Clortox/drone-ntfy.git
synced 2024-06-08 02:40:40 +00:00
Make curl u param more dynamic (#13)
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
453a4ab465
commit
bd5df072a9
8
main.sh
8
main.sh
@ -16,6 +16,10 @@ Message=${PLUGIN_MESSAGE:-Pipeline finished!}
|
||||
Username=${PLUGIN_USERNAME:-}
|
||||
Password=${PLUGIN_PASSWORD:-}
|
||||
|
||||
if [[ ! -z $Username ]] || [[ ! -z $Password ]]; then
|
||||
UParam="-u $Username:$Password"
|
||||
fi
|
||||
|
||||
if [[ ! -z $Priority ]]; then
|
||||
Priority="-H Priority:$Priority"
|
||||
fi
|
||||
@ -40,5 +44,5 @@ if [[ ! -z $Icon ]]; then
|
||||
Icon="-H Icon:$Icon"
|
||||
fi
|
||||
|
||||
curl $Priority $Title $Tags $Click $Attach $Icon -u $Username:$Password -d "$Message" $URL/$Topic
|
||||
#curl $Priority $Title $Tags $Click $Attach $Icon -u $Username:$Password -d "$Message" $URL/$Topic
|
||||
curl $Priority $Title $Tags $Click $Attach $Icon $UParam -d "$Message" $URL/$Topic
|
||||
#curl $Priority $Title $Tags $Click $Attach $Icon $UParam -d "$Message" $URL/$Topic
|
||||
|
Loading…
Reference in New Issue
Block a user