mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-10-08 18:31:07 +03:00
Fix archive repo apk names and source references properly
This commit is contained in:
parent
25a84a05b5
commit
9bb4ef0648
1 changed files with 1 additions and 1 deletions
|
@ -232,7 +232,7 @@ def scan_apks(apps, apkcache, repodir, knownapks):
|
|||
apks = []
|
||||
for apkfile in glob.glob(os.path.join(repodir, '*.apk')):
|
||||
|
||||
apkfilename = apkfile[len(repodir):]
|
||||
apkfilename = apkfile[len(repodir) + 1:]
|
||||
if apkfilename.find(' ') != -1:
|
||||
print "No spaces in APK filenames!"
|
||||
sys.exit(1)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue