mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
Don't use removeprefix in tools/unnamed.py (it worked locally...)
This commit is contained in:
parent
55ca2da25a
commit
29fada7d8c
@ -48,8 +48,8 @@ objects = None
|
||||
if args.rootdir:
|
||||
for line in subprocess.Popen(['make', '-C', args.rootdir, '-s', '-p', 'DEBUG=1'],
|
||||
stdout=subprocess.PIPE).stdout.read().decode().split('\n'):
|
||||
if line.startswith('pokecrystal_obj'):
|
||||
objects = line.removeprefix('pokecrystal_obj').lstrip().removeprefix(':=').strip().split()
|
||||
if line.startswith('pokecrystal_obj :='):
|
||||
objects = line[len('pokecrystal_obj :='):].strip().split()
|
||||
break
|
||||
else:
|
||||
print('Error: Object files not found!', file=sys.stderr)
|
||||
|
Loading…
Reference in New Issue
Block a user