Commit 18eb1939 authored by Robby Russell's avatar Robby Russell
Browse files

Merge pull request #2955 from SFrost007/jira-prefix

Add support for jira-prefix configuration file
parents 2faba656 9d76784b
......@@ -29,15 +29,23 @@ open_jira_issue () {
return 0
fi
if [ -f .jira-prefix ]; then
jira_prefix=$(cat .jira-prefix)
elif [ -f ~/.jira-prefix ]; then
jira_prefix=$(cat ~/.jira-prefix)
else
jira_prefix=""
fi
if [ -z "$1" ]; then
echo "Opening new issue"
$open_cmd "$jira_url/secure/CreateIssue!default.jspa"
else
echo "Opening issue #$1"
if [[ "x$JIRA_RAPID_BOARD" = "xtrue" ]]; then
$open_cmd "$jira_url/issues/$1"
$open_cmd "$jira_url/issues/$jira_prefix$1"
else
$open_cmd "$jira_url/browse/$1"
$open_cmd "$jira_url/browse/$jira_prefix$1"
fi
fi
}
......
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