projects
/
xogo.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4aec8e8
)
Remove extra print
author
Benjamin Auder
<benjamin.auder@somewhere>
Wed, 6 May 2026 20:18:19 +0000
(22:18 +0200)
committer
Benjamin Auder
<benjamin.auder@somewhere>
Wed, 6 May 2026 20:18:19 +0000
(22:18 +0200)
bundle.py
patch
|
blob
|
blame
|
history
diff --git
a/bundle.py
b/bundle.py
index
b1d794e
..
8353cf9
100755
(executable)
--- a/
bundle.py
+++ b/
bundle.py
@@
-64,7
+64,6
@@
def run_bundle():
# 2. Update references
for root, dirs, files in os.walk(DEST_DIR):
for file in files:
- print(file)
if os.path.splitext(file)[1] in EXTENSIONS_TO_UPDATE and not re.match(r'^app\.[^\.]+\.js$', file):
file_path = os.path.join(root, file)
with open(file_path, 'r', encoding='utf-8') as f: