List all the bootstraps available to build with.
(self, _args)
| 832 | .format(recipe=recipe, Fore=Out_Fore)) |
| 833 | |
| 834 | def bootstraps(self, _args): |
| 835 | """List all the bootstraps available to build with.""" |
| 836 | for bs in Bootstrap.all_bootstraps(): |
| 837 | bs = Bootstrap.get_bootstrap(bs, self.ctx) |
| 838 | print('{Fore.BLUE}{Style.BRIGHT}{bs.name}{Style.RESET_ALL}' |
| 839 | .format(bs=bs, Fore=Out_Fore, Style=Out_Style)) |
| 840 | print(' {Fore.GREEN}depends: {bs.recipe_depends}{Fore.RESET}' |
| 841 | .format(bs=bs, Fore=Out_Fore)) |
| 842 | |
| 843 | def clean(self, args): |
| 844 | components = args.component |
nothing calls this directly
no test coverage detected