Skip to content

Commit 543d35b

Browse files
committed
Made clean_builds not delete distributions
1 parent 18e9b86 commit 543d35b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pythonforandroid/toolchain.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2245,8 +2245,8 @@ def clean_builds(self, args):
22452245
description="Delete all build files (but not download caches)")
22462246
args = parser.parse_args(args)
22472247
ctx = Context()
2248-
if exists(ctx.dist_dir):
2249-
shutil.rmtree(ctx.dist_dir)
2248+
# if exists(ctx.dist_dir):
2249+
# shutil.rmtree(ctx.dist_dir)
22502250
if exists(ctx.build_dir):
22512251
shutil.rmtree(ctx.build_dir)
22522252

0 commit comments

Comments
 (0)