Skip to content

Commit

Permalink
bugfix?
Browse files Browse the repository at this point in the history
  • Loading branch information
erjosito committed Oct 4, 2024
1 parent dfd816b commit 13c04e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/translatev2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ jobs:
# The list of impacted checklists will be passed as an array
impacted_cl_files=()
done_something=no
//clv2_file_list=${{ steps.variables.outputs.clv2_file_list }}
#clv2_file_list=${{ steps.variables.outputs.clv2_file_list }}
declare -n clv2_file_list="${{ steps.variables.outputs.clv2_file_list }}" # Name reference to the array of v2 checklists to check
echo "Checking impact of changes on files ${{ steps.variables.outputs.clv2_file_list }} to the following ${#clv2_file_list[@]} v2 checklists: ${clv2_file_list}..."
//for cl_file in $clv2_file_list; do
#for cl_file in $clv2_file_list; do
for cl_file in ${{ steps.variables.outputs.clv2_file_list }}; do
echo "Processing v2 checklist '${cl_file}'..."
cl_name=$(echo $cl_file | cut -d/ -f4 | cut -d. -f1)
Expand Down

0 comments on commit 13c04e5

Please sign in to comment.