We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d86f6b commit ec3b171Copy full SHA for ec3b171
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