Skip to content

Commit

Permalink
ref(15): Start testing wild integration with Jenkins
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanjerome committed Aug 26, 2023
1 parent cfa198a commit ee59f57
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lib/workflow.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ workflow_get_workflows_containers_names() {

declare -a containers_names
while IFS= read -r line; do
containers_names+=("$line")
#containers_names+=("$line")
containers_names[${#containers_names[@]}]="$line"
done < <("$JQ" -r '.actions[].container' "${WILD_CWD}/${workflow_definition_path}")

# shellcheck disable=SC2145
Expand Down

0 comments on commit ee59f57

Please sign in to comment.