@@ -177,7 +177,7 @@ def download_bundled():
177
177
file .write (response .content )
178
178
179
179
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' ,
181
181
'--depth' , '1' , LIMINE_URL , limine_path ])
182
182
183
183
@@ -422,24 +422,24 @@ def cp(src, dest):
422
422
423
423
return None
424
424
425
- limine_s2deploy = os .path .join (limine_path , 'limine-s2deploy ' )
425
+ limine_deploy = os .path .join (limine_path , 'limine-deploy ' )
426
426
427
- if not os .path .exists (limine_s2deploy ):
427
+ if not os .path .exists (limine_deploy ):
428
428
code , _ , limine_build_stderr = run_command (['make' , '-C' , limine_path ],
429
429
stdout = subprocess .PIPE ,
430
430
stderr = subprocess .PIPE )
431
431
if code != 0 :
432
- print ('Failed to build `limine-s2deploy `' )
432
+ print ('Failed to build `limine-deploy `' )
433
433
print (limine_build_stderr .decode ('utf8' ))
434
434
exit (1 )
435
435
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 )
439
439
440
440
if code != 0 :
441
441
print ('Failed to install Limine' )
442
- print (limine_s2deploy_stderr )
442
+ print (limine_deploy_stderr )
443
443
444
444
return None
445
445
0 commit comments