1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-11 15:13:27 +02:00

When using placed srclibs, don't fail if proj.prop doesn't exist

This commit is contained in:
Daniel Martí 2014-01-27 22:34:34 +01:00
parent 03cc679dc8
commit dfd0ecc740

View File

@ -1497,8 +1497,10 @@ def place_srclib(root_dir, number, libpath):
relpath = os.path.relpath(libpath, root_dir)
proppath = os.path.join(root_dir, 'project.properties')
with open(proppath, "r") as o:
lines = o.readlines()
lines = []
if os.path.isfile(proppath):
with open(proppath, "r") as o:
lines = o.readlines()
with open(proppath, "w") as o:
placed = False