mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-13 17:30:08 +00:00
Changing string comparison for more zsh-like
This commit is contained in:
parent
b1da3bbc6f
commit
88a30a3e2f
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ open_jira_issue () {
|
||||||
echo "Opening issue #$1"
|
echo "Opening issue #$1"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$JIRA_RAPID_BOARD" = "true" ]]; then
|
if [[ "$JIRA_RAPID_BOARD" == "true" ]]; then
|
||||||
$open_cmd "$jira_url/issues/$jira_prefix$1$addcomment"
|
$open_cmd "$jira_url/issues/$jira_prefix$1$addcomment"
|
||||||
else
|
else
|
||||||
$open_cmd "$jira_url/browse/$jira_prefix$1$addcomment"
|
$open_cmd "$jira_url/browse/$jira_prefix$1$addcomment"
|
||||||
|
|
Loading…
Reference in a new issue