Skip to content

Commit

Permalink
Merge pull request #630 from bionoid/patch-1
Browse files Browse the repository at this point in the history
Quote --storage-dir value
  • Loading branch information
tito committed Aug 21, 2018
2 parents a3d4e07 + 59ae01d commit 48f9b74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildozer/targets/android_new.py
Expand Up @@ -27,7 +27,7 @@ def __init__(self, *args, **kwargs):
'app', 'p4a.bootstrap', 'sdl2')
self.p4a_apk_cmd += self._p4a_bootstrap
color = 'always' if USE_COLOR else 'never'
self.extra_p4a_args = ' --color={} --storage-dir={}'.format(
self.extra_p4a_args = ' --color={} --storage-dir="{}"'.format(
color, self._build_dir)
hook = self.buildozer.config.getdefault("app", "p4a.hook", None)
if hook is not None:
Expand Down

0 comments on commit 48f9b74

Please sign in to comment.