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

More consistent curly braces variables

parent 37f45eb6
...@@ -57,9 +57,9 @@ open_jira_issue () { ...@@ -57,9 +57,9 @@ open_jira_issue () {
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}"
fi fi
fi fi
} }
......
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