1
0
Fork 0
mirror of https://github.com/YunoHost/apps.git synced 2024-09-03 20:06:07 +02:00

[microdecision] Work around a small bug for apps with different id in manifest and list.json...

(E.g. "Pelican" in list.json but "pelican" is the real id in the built list... Hence it did not fetch the previous commit correctly)
This commit is contained in:
Alexandre Aubin 2018-03-27 14:25:44 +02:00 committed by GitHub
parent 175cce6f52
commit f7d8ed2a85
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -139,6 +139,7 @@ result_dict = {}
for app, info in apps_list.items(): for app, info in apps_list.items():
print("---") print("---")
print("Processing '%s'..." % app) print("Processing '%s'..." % app)
app = app.lower()
# Store usefull values # Store usefull values
app_branch = info['branch'] app_branch = info['branch']