Skip to content

Commit

Permalink
not aggregated
Browse files Browse the repository at this point in the history
  • Loading branch information
savannahostrowski committed Jan 10, 2025
1 parent a791c15 commit 34e7e05
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/jit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,8 @@ jobs:
for dir in $(find artifacts -mindepth 1 -maxdepth 1 -type d); do
for patch_file in $(find "$dir" -type f -name "*.patch"); do
# if patch name isn't aggregated_jit_stencils.patch
if [[ "$patch_file" == "$aggregated_patch_file" ]]; then
echo "Apply patch $patch_file"
cat "$patch_file" >> "$aggregated_patch_file"
if [[ "$patch_file" != "$aggregated_patch_file" ]]; then
cat "$patch_file" >> "$aggregated_patch_file"
fi
done
done
Expand Down

0 comments on commit 34e7e05

Please sign in to comment.