Skip to content

Commit fd9f134

Browse files
committed
aero.py: Fix another breakage caused by limine-bootloader/limine@bcced19
1 parent b6affd4 commit fd9f134

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

aero.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ def download_bundled():
177177
file.write(response.content)
178178

179179
if not os.path.exists(limine_path):
180-
run_command(['git', 'clone', '--branch', 'latest-binary',
180+
run_command(['git', 'clone', '--branch', 'v3.0-branch-binary',
181181
'--depth', '1', LIMINE_URL, limine_path])
182182

183183

@@ -422,24 +422,24 @@ def cp(src, dest):
422422

423423
return None
424424

425-
limine_s2deploy = os.path.join(limine_path, 'limine-s2deploy')
425+
limine_deploy = os.path.join(limine_path, 'limine-deploy')
426426

427-
if not os.path.exists(limine_s2deploy):
427+
if not os.path.exists(limine_deploy):
428428
code, _, limine_build_stderr = run_command(['make', '-C', limine_path],
429429
stdout=subprocess.PIPE,
430430
stderr=subprocess.PIPE)
431431
if code != 0:
432-
print('Failed to build `limine-s2deploy`')
432+
print('Failed to build `limine-deploy`')
433433
print(limine_build_stderr.decode('utf8'))
434434
exit(1)
435435

436-
code, _, limine_s2deploy_stderr = run_command([limine_s2deploy, iso_path],
437-
stdout=subprocess.PIPE,
438-
stderr=subprocess.PIPE)
436+
code, _, limine_deploy_stderr = run_command([limine_deploy, iso_path],
437+
stdout=subprocess.PIPE,
438+
stderr=subprocess.PIPE)
439439

440440
if code != 0:
441441
print('Failed to install Limine')
442-
print(limine_s2deploy_stderr)
442+
print(limine_deploy_stderr)
443443

444444
return None
445445

0 commit comments

Comments
 (0)