mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 23:10:29 +03:00
Enforce no spaces, as bad things will silently happen otherwise
This commit is contained in:
parent
15ce8303f9
commit
65031e97b7
1 changed files with 3 additions and 0 deletions
|
|
@ -79,6 +79,9 @@ apks = []
|
|||
for apkfile in glob.glob(os.path.join('repo','*.apk')):
|
||||
|
||||
apkfilename = apkfile[5:]
|
||||
if apkfilename.find(' ') != -1:
|
||||
print "No spaces in APK filenames!"
|
||||
sys.exit(1)
|
||||
srcfilename = apkfilename[:-4] + "_src.tar.gz"
|
||||
|
||||
if not options.quiet:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue