Commit 88a30a3e authored by Patryk Małek's avatar Patryk Małek
Browse files

Changing string comparison for more zsh-like

parent b1da3bbc
......@@ -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"
......
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