Fix Windows build

This commit is contained in:
vvb2060 2021-01-23 17:44:32 +08:00 committed by topjohnwu
parent e57556a8af
commit 06773235da
1 changed files with 1 additions and 1 deletions

View File

@ -220,7 +220,7 @@ def sign_zip(unsigned):
return
msg = '* Signing APK'
apksigner = op.join(find_build_tools(), 'apksigner')
apksigner = op.join(find_build_tools(), 'apksigner' + ('.bat' if is_windows else ''))
exec_args = [apksigner, 'sign',
'--ks', config['keyStore'],