mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 06:50:29 +03:00
rewritemeta: fix silly bug of using == for =
This was introduced in c0bc3afda9
This commit is contained in:
parent
2a421d653c
commit
7a25dbc081
1 changed files with 2 additions and 2 deletions
|
|
@ -224,7 +224,7 @@ build_flags_order = [
|
||||||
'rm',
|
'rm',
|
||||||
'extlibs',
|
'extlibs',
|
||||||
'prebuild',
|
'prebuild',
|
||||||
'update',
|
'androidupdate',
|
||||||
'target',
|
'target',
|
||||||
'scanignore',
|
'scanignore',
|
||||||
'scandelete',
|
'scandelete',
|
||||||
|
|
@ -1275,7 +1275,7 @@ def write_txt(mf, app):
|
||||||
|
|
||||||
t = flagtype(f)
|
t = flagtype(f)
|
||||||
if f == 'androidupdate':
|
if f == 'androidupdate':
|
||||||
f == 'update' # avoid conflicting with Build(dict).update()
|
f = 'update' # avoid conflicting with Build(dict).update()
|
||||||
mf.write(' %s=' % f)
|
mf.write(' %s=' % f)
|
||||||
if t == TYPE_STRING:
|
if t == TYPE_STRING:
|
||||||
mf.write(v)
|
mf.write(v)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue