We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1d86f6b + ec3b171 commit 149d9eaCopy full SHA for 149d9ea
1 file changed
pythonforandroid/bdistapk.py
@@ -87,7 +87,8 @@ def prepare_build_dir(self):
87
'that.')
88
89
bdist_dir = 'build/bdist.android-{}'.format(self.arch)
90
- rmtree(bdist_dir)
+ if exists(bdist_dir):
91
+ rmtree(bdist_dir)
92
makedirs(bdist_dir)
93
94
globs = []
0 commit comments