Skip to content

Commit

Permalink
Update build.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ImprovedTube authored Dec 15, 2024
1 parent d4f2dea commit a57aa2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def chromium(browser):
os.chdir(temporary_path)

for item in os.listdir('../'):
if item not in excluded_items and item.find('.zip') == -1:
if item not in excluded and item.find('.zip') == -1:
s = os.path.join('../', item)
d = os.path.join(temporary_path, item)
if os.path.isdir(s):
Expand Down Expand Up @@ -88,7 +88,7 @@ def firefox():

for item in os.listdir('../'):

if item not in excluded_items and item.find('.zip') == -1:
if item not in excluded and item.find('.zip') == -1:
s = os.path.join('../', item)
d = os.path.join(temporary_path, item)
if os.path.isdir(s):
Expand Down

0 comments on commit a57aa2b

Please sign in to comment.