Commit 1f6e1555 authored by Marc Cornellà's avatar Marc Cornellà
Browse files

Clean up jira function

parent 95220004
...@@ -63,19 +63,24 @@ function jira() { ...@@ -63,19 +63,24 @@ function jira() {
else else
# Anything that doesn't match a special action is considered an issue name # Anything that doesn't match a special action is considered an issue name
# but `branch` is a special case that will parse the current git branch # but `branch` is a special case that will parse the current git branch
local issue_arg issue
if [[ "$action" == "branch" ]]; then if [[ "$action" == "branch" ]]; then
local issue_arg=$(git rev-parse --abbrev-ref HEAD) # Get name of the branch
issue_arg=($(echo $issue_arg | cut -d'_' -f1)) issue_arg=$(git rev-parse --abbrev-ref HEAD)
if [[ $(echo ${issue_arg} | grep ${jira_prefix}) ]]; then # Split by _ character and get the first element
local issue="${issue_arg}" issue_arg=(${(s:_:)issue_arg})
issue_arg=${issue_arg[1]}
if [[ "$issue_arg" = ${jira_prefix}* ]]; then
issue="${issue_arg}"
else else
local issue="${jira_prefix}${issue_arg}" issue="${jira_prefix}${issue_arg}"
fi fi
else else
local issue_arg=${(U)action} issue_arg=${(U)action}
local issue="${jira_prefix}${issue_arg}" issue="${jira_prefix}${issue_arg}"
fi fi
local url_fragment=''
local url_fragment
if [[ "$2" == "m" ]]; then if [[ "$2" == "m" ]]; then
url_fragment="#add-comment" url_fragment="#add-comment"
echo "Add comment to issue #$issue" echo "Add comment to issue #$issue"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment