Skip to content

Commit

Permalink
fix with o1-mini
Browse files Browse the repository at this point in the history
  • Loading branch information
killerwolf committed Oct 30, 2024
1 parent 9a15e1d commit 8444832
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-formulas.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ jobs:
id: get_formulas
run: |
formula_string=""
find ./Formula -maxdepth 1 -type f -name '*.rb' -print0 | while IFS= read -r -d $'\0' formula_file; do
while IFS= read -r -d $'\0' formula_file; do
formula_name=$(basename "$formula_file" .rb)
echo "Found formula: $formula_name"
formula_string="$formula_string $formula_name"
done
done < <(find ./Formula -maxdepth 1 -type f -name '*.rb' -print0)
echo "formulas=$formula_string" >> $GITHUB_ENV
echo "Final formulas: $formula_string"
Expand Down

0 comments on commit 8444832

Please sign in to comment.