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"