mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-10 14:41:43 +00:00
aedi: fix f-string issues
This commit is contained in:
parent
5dc10de290
commit
7ade9daeb4
1 changed files with 3 additions and 3 deletions
|
@ -231,8 +231,8 @@ class ChocolateDoomBaseTarget(CMakeMainTarget):
|
|||
f'src/{exe_prefix}-server',
|
||||
f'src/{exe_prefix}-setup',
|
||||
f'src/{exe_prefix}-strife',
|
||||
f'src/midiread',
|
||||
f'src/mus2mid',
|
||||
'src/midiread',
|
||||
'src/mus2mid',
|
||||
)
|
||||
|
||||
|
||||
|
@ -325,7 +325,7 @@ class EDuke32Target(MakeMainTarget):
|
|||
|
||||
def detect(self, state: BuildState) -> bool:
|
||||
def has_bundle(name: str) -> bool:
|
||||
probe_path = state.source / 'platform/Apple/bundles/{name}.app'
|
||||
probe_path = state.source / f'platform/Apple/bundles/{name}.app'
|
||||
return probe_path.exists()
|
||||
|
||||
return has_bundle('EDuke32') and not has_bundle('NBlood')
|
||||
|
|
Loading…
Reference in a new issue