Skip to content

Commit

Permalink
Fix env var IGNORED_FILES (apache#10)
Browse files Browse the repository at this point in the history
Signed-off-by: Ricardo Zanini <[email protected]>
  • Loading branch information
ricardozanini authored Nov 7, 2024
1 parent 9b9633e commit 806ebad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/osl_sync_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Move Ignored Files Temporarily
run: |
mkdir temp_ignored_items
for item in $IGNORED_ITEMS; do
for item in $IGNORED_FILES; do
if [ -e "$item" ]; then
mv -v "$item" temp_ignored_items/
else
Expand All @@ -54,7 +54,7 @@ jobs:
- name: Restore and Recreate Ignored Files
run: |
for item in $IGNORED_ITEMS; do
for item in $IGNORED_FILES; do
[ -e "temp_ignored_items/$(basename "$item")" ] && mv -v "temp_ignored_items/$(basename "$item")" "$item"
done
rm -rf temp_ignored_items
Expand Down

0 comments on commit 806ebad

Please sign in to comment.