Skip to content

Commit 030e397

Browse files
committed
Fix JS patching
1 parent dc51a41 commit 030e397

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

patch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
with open(path, 'w') as f:
1212
f.write(contents)
1313

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

0 commit comments

Comments
 (0)