File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
tracker_automations/component_leads_integration_mover Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -172,14 +172,14 @@ function verify_revievers_availability() {
172172 return # Outcome set, we are done.
173173 fi
174174
175- # There is some component lead reviewer available, let's send the issue to CLR. This check is done.
175+ # There is at least one component lead reviewer available, let's send the issue to CLR. This check is done.
176176 echo " - There are available reviewers (${available} ) for the issue."
177177 outcome=CLR
178178 availableProfiles=()
179- IFS=, read -r -a availableCLRs <<< " $available"
179+ IFS=' ' read -r -a availableCLRs <<< " $available"
180180 for availableCLR in " ${availableCLRs[@]} " ; do
181181 availableCLR=$( trimstring " $availableCLR " )
182- if [[ -z ${available } ]]; then
182+ if [[ -z ${availableCLR } ]]; then
183183 continue
184184 fi
185185 availableProfiles+=(" [~${availableCLR} ]" )
You can’t perform that action at this time.
0 commit comments