This commit is contained in:
Chase King 2025-02-24 10:09:04 -05:00
parent 0b0a8d6d07
commit 49f7dddb5f

View file

@ -142,4 +142,8 @@ add_comment() {
-H "Authorization: Basic $AUTH" \
-d "$request" \
"$JIRA_SERVER/rest/api/3/issue/$issue_key/comment"
}
}
if [[ $# -gt 0 ]]; then # IF function call passed in
"$@" # Call function
fi