We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90bf32f commit c67b5a2Copy full SHA for c67b5a2
scripts/lib-kosli.sh
@@ -143,12 +143,13 @@ function get_artifact_flow_commit_mapping_json
143
function get_issue_keys_between_staging_and_prod
144
{
145
commits=$(get_commits_between_staging_and_prod ${KOSLI_ENV_STAGING} ${KOSLI_ENV_PROD})
146
+ echo "Commits between staging and prod: ${commits}" >&2
147
issueKeys=""
148
keys=$(get_all_jira_issue_keys_for_commits ${KOSLI_FLOW_FRONTEND} "${commits}")
149
issueKeys+=" ${keys}"
150
keys=$(get_all_jira_issue_keys_for_commits ${KOSLI_FLOW_BACKEND} "${commits}")
151
- echo ${issueKeys} | tr ' ' '\n' | sort -u
152
+ echo ${issueKeys} | tr ' ' '\n' | sort -u | tr '\n' ' '
153
}
154
155
#get_issue_keys_between_staging_and_prod
0 commit comments