fix: support ordered version listing

See coop-cloud/go-abra#44.
This commit is contained in:
decentral1se 2021-09-06 12:44:51 +02:00
parent 55138b7e0f
commit a515198b9f
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 2 additions and 2 deletions

View File

@ -140,7 +140,7 @@ def get_app_metadata(app_path):
def get_app_versions(app_path, cached_apps_json):
versions = {}
versions = []
chdir(app_path)
@ -206,7 +206,7 @@ def get_app_versions(app_path, cached_apps_json):
parsed_services.append(service)
versions[tag] = service_versions
versions.append({tag: service_versions})
_run_cmd(f"git checkout {initial_branch}")