0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00

Changing string comparison for more zsh-like

This commit is contained in:
Patryk Małek 2015-07-07 18:50:23 +02:00
parent b1da3bbc6f
commit 88a30a3e2f

View file

@ -54,7 +54,7 @@ open_jira_issue () {
echo "Opening issue #$1"
fi
if [[ "$JIRA_RAPID_BOARD" = "true" ]]; then
if [[ "$JIRA_RAPID_BOARD" == "true" ]]; then
$open_cmd "$jira_url/issues/$jira_prefix$1$addcomment"
else
$open_cmd "$jira_url/browse/$jira_prefix$1$addcomment"