mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-10-09 02:41:06 +03:00
Always run aapt with SilentPopen
This commit is contained in:
parent
49208b257d
commit
c750b02a6c
1 changed files with 2 additions and 2 deletions
|
@ -34,7 +34,7 @@ import logging
|
|||
|
||||
import common
|
||||
import metadata
|
||||
from common import FDroidPopen
|
||||
from common import FDroidPopen, SilentPopen
|
||||
from metadata import MetaDataException
|
||||
|
||||
|
||||
|
@ -374,7 +374,7 @@ def scan_apks(apps, apkcache, repodir, knownapks):
|
|||
thisinfo['features'] = []
|
||||
thisinfo['icons_src'] = {}
|
||||
thisinfo['icons'] = {}
|
||||
p = FDroidPopen([os.path.join(config['sdk_path'], 'build-tools',
|
||||
p = SilentPopen([os.path.join(config['sdk_path'], 'build-tools',
|
||||
config['build_tools'], 'aapt'),
|
||||
'dump', 'badging', apkfile])
|
||||
if p.returncode != 0:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue