mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-14 15:02:51 +03:00
First metadata checks rewrite; New metadata.py module
This commit is contained in:
parent
b6f5c15a7c
commit
fb38eb6b8c
10 changed files with 750 additions and 697 deletions
|
@ -21,7 +21,7 @@ import sys
|
|||
import os
|
||||
import traceback
|
||||
from optparse import OptionParser
|
||||
import common
|
||||
import common, metadata
|
||||
from common import BuildException
|
||||
from common import VCSException
|
||||
|
||||
|
@ -45,7 +45,7 @@ def main():
|
|||
config = common.read_config(options)
|
||||
|
||||
# Get all apps...
|
||||
apps = common.read_metadata()
|
||||
apps = metadata.read_metadata()
|
||||
|
||||
# Filter apps according to command-line options
|
||||
if options.package:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue