File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -785,7 +785,7 @@ def recipes(self, args):
785
785
786
786
def bootstraps (self , _args ):
787
787
"""List all the bootstraps available to build with."""
788
- for bs in Bootstrap .list_bootstraps ():
788
+ for bs in Bootstrap .all_bootstraps ():
789
789
bs = Bootstrap .get_bootstrap (bs , self .ctx )
790
790
print ('{Fore.BLUE}{Style.BRIGHT}{bs.name}{Style.RESET_ALL}'
791
791
.format (bs = bs , Fore = Out_Fore , Style = Out_Style ))
@@ -828,7 +828,7 @@ def clean_bootstrap_builds(self, _args):
828
828
"""Delete all the bootstrap builds."""
829
829
if exists (join (self .ctx .build_dir , 'bootstrap_builds' )):
830
830
shutil .rmtree (join (self .ctx .build_dir , 'bootstrap_builds' ))
831
- # for bs in Bootstrap.list_bootstraps ():
831
+ # for bs in Bootstrap.all_bootstraps ():
832
832
# bs = Bootstrap.get_bootstrap(bs, self.ctx)
833
833
# if bs.build_dir and exists(bs.build_dir):
834
834
# info('Cleaning build for {} bootstrap.'.format(bs.name))
You can’t perform that action at this time.
0 commit comments