Skip to content

Commit 1a65d36

Browse files
committed
Changed 'clean_bootstraps' to 'clean_bootstrap_builds'
1 parent 842aedb commit 1a65d36

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pythonforandroid/toolchain.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ def __init__(self):
180180
clean_all Delete all build components
181181
clean_builds Delete all build caches
182182
clean_dists Delete all compiled distributions
183-
clean_bootstraps Delete all compiled bootstraps
183+
clean_bootstrap_builds Delete all compiled bootstraps
184184
clean_download_cache Delete any downloaded recipe packages
185185
clean_recipe_build Delete the build files of a recipe
186186
distributions List all distributions
@@ -424,7 +424,7 @@ def clean_dists(self, args):
424424
if exists(ctx.dist_dir):
425425
shutil.rmtree(ctx.dist_dir)
426426

427-
def clean_bootstraps(self, args):
427+
def clean_bootstrap_builds(self, args):
428428
'''Delete all the bootstrap builds.'''
429429
for bs in Bootstrap.list_bootstraps():
430430
bs = Bootstrap.get_bootstrap(bs, self.ctx)

0 commit comments

Comments
 (0)