diff options
author | Robby Russell <robby@planetargon.com> | 2013-06-25 09:14:59 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2013-06-25 09:14:59 -0700 |
commit | 11b7155469c7e2d48d68b87899c8e4824a790b6b (patch) | |
tree | 8ba4f7dad32f1b6656ee5111c64a3a4cc748fe5c /plugins | |
parent | bf2a85c39720d1b1ea5a181b7f32d56d5206d941 (diff) | |
parent | bab1800ded30331b289550b1de8d60bb64f5512f (diff) | |
download | zsh-11b7155469c7e2d48d68b87899c8e4824a790b6b.tar.gz zsh-11b7155469c7e2d48d68b87899c8e4824a790b6b.tar.bz2 zsh-11b7155469c7e2d48d68b87899c8e4824a790b6b.zip |
Merge pull request #1886 from tresni/patch-5
Correctly detect JIRA Rapid Board
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/jira/jira.plugin.zsh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/jira/jira.plugin.zsh b/plugins/jira/jira.plugin.zsh index bea726a54..9aa192c1e 100644 --- a/plugins/jira/jira.plugin.zsh +++ b/plugins/jira/jira.plugin.zsh @@ -3,7 +3,7 @@ # .jira-url in the current directory takes precedence # # If you use Rapid Board, set: -#JIRA_RAPID_BOARD="yes" +#JIRA_RAPID_BOARD="true" # in you .zshrc # # Setup: cd to/my/project @@ -34,7 +34,7 @@ open_jira_issue () { `open $jira_url/secure/CreateIssue!default.jspa` else echo "Opening issue #$1" - if [[ "x$JIRA_RAPID_BOARD" = "yes" ]]; then + if [[ "x$JIRA_RAPID_BOARD" = "xtrue" ]]; then $open_cmd "$jira_url/issues/$1" else $open_cmd "$jira_url/browse/$1" |