Skip to content

Commit 03671e9

Browse files
authored
Merge pull request #1544 from bit4bit/master
fix wrong conditional for build custom_rules.tmpl.xml
2 parents 8493d5e + 41b740e commit 03671e9

File tree

1 file changed

+1
-1
lines changed
  • pythonforandroid/bootstraps/common/build

1 file changed

+1
-1
lines changed

pythonforandroid/bootstraps/common/build/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ def make_package(args):
483483
join(res_dir, 'values/strings.xml'),
484484
**render_args)
485485

486-
if exists("custom_rules.tmpl.xml"):
486+
if exists(join("templates", "custom_rules.tmpl.xml")):
487487
render(
488488
'custom_rules.tmpl.xml',
489489
'custom_rules.xml',

0 commit comments

Comments
 (0)