We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7cb9c0 commit b9f2642Copy full SHA for b9f2642
pythonforandroid/build.py
@@ -484,7 +484,9 @@ def set_archs(self, arch_names):
484
', '.join([arch.arch for arch in self.archs])))
485
486
def prepare_bootstrap(self, bs):
487
- bs.ctx = self
+ if bs:
488
+ # XXX: this condition fixes tox ci tests, dont know when in reality we have no bootstrap
489
+ bs.ctx = self
490
self.bootstrap = bs
491
self.bootstrap.prepare_build_dir()
492
self.bootstrap_build_dir = self.bootstrap.build_dir
0 commit comments