Skip to content

Commit

Permalink
Fix JS patching
Browse files Browse the repository at this point in the history
  • Loading branch information
GarboMuffin committed Dec 7, 2024
1 parent dc51a41 commit 030e397
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion patch.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
with open(path, 'w') as f:
f.write(contents)

for path in glob.glob('scratch-gui/build/js/*.js'):
for path in glob.glob('scratch-gui/build/**/*.js'):
print(f'Patching JS {path}')
with open(path, 'r') as f:
contents = f.read()
Expand Down

0 comments on commit 030e397

Please sign in to comment.