mirror of
https://github.com/YGGverse/hlsdk-portable.git
synced 2025-01-11 15:38:12 +00:00
build: fix travis ci
I think travis is still using Python 3.4.*, so f-strings are not supported yet and android engine doesn't build.
This commit is contained in:
parent
576e6befba
commit
682c1c6da9
@ -16,7 +16,7 @@ def configure(conf):
|
||||
hlDefNode = conf.path.find_resource("./hl.def")
|
||||
|
||||
if hlDefNode is not None:
|
||||
conf.env.append_unique('LINKFLAGS', f'/def:{hlDefNode.abspath()}')
|
||||
conf.env.append_unique('LINKFLAGS', '/def:{}'.format(hlDefNode.abspath()))
|
||||
else:
|
||||
conf.fatal("Could not find hl.def")
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user