Skip to content

Commit

Permalink
9
Browse files Browse the repository at this point in the history
  • Loading branch information
Glutamat42 authored Oct 31, 2024
1 parent 6f8a04d commit 30fbc72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/moodle-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ jobs:
first_entry=true
for i in $(cat plugin_compatibility.json | jq -c '.[]'); do
moodle=$(echo "$i" | jq -r '.moodle')
for php in $(echo "$i" | jq -c '.PHP[]'); do
for php in $(echo "$i" | jq -r '.PHP[]'); do
for database in pgsql mariadb; do
if [ "$first_entry" = true ]; then
first_entry=false
else
include_str="$include_str,"
fi
next_entry="{\"php\": $php, \"moodle-branch\": \"$moodle\", \"database\": \"$database\", \"experimental\": false}"
next_entry="{\"php\": \"$php\", \"moodle-branch\": \"$moodle\", \"database\": \"$database\", \"experimental\": false}"
include_str="$include_str$next_entry"
done
done
Expand Down

0 comments on commit 30fbc72

Please sign in to comment.