mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2025-02-21 02:51:43 +00:00
build script: fix text file update without processor
This commit is contained in:
parent
58f425e67a
commit
5ed71bf57a
1 changed files with 1 additions and 1 deletions
2
build.py
2
build.py
|
@ -147,7 +147,7 @@ class Target(BaseTarget):
|
|||
patched_content = []
|
||||
|
||||
for line in content:
|
||||
patched_line = processor(line)
|
||||
patched_line = processor(line) if processor else line
|
||||
|
||||
if patched_line:
|
||||
patched_content.append(patched_line)
|
||||
|
|
Loading…
Reference in a new issue