Skip to content

Commit

Permalink
hopefully fix filename filtering
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaiserdragon2 committed Feb 15, 2024
1 parent 15b1ad0 commit 135c35e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/combine_appfilter.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def combine_all_appfilters():
print(f"File: {file.filename}")

# Find the appfilter.xml file
appfilter_files = [file.filename for file in files if file.filename == 'appfilter.xml']
appfilter_files = [file.filename for file in files if file.filename == 'newicons/appfilter.xml']
for appfilter_file in appfilter_files:
print(f"Found appfilter.xml: {appfilter_file}")
appfilter_files.append('newicons/appfilter.xml') # Add other source file
Expand Down

0 comments on commit 135c35e

Please sign in to comment.