diff options
author | Trevor Bramwell <tbramwell@linuxfoundation.org> | 2018-06-28 16:05:41 -0700 |
---|---|---|
committer | Trevor Bramwell <tbramwell@linuxfoundation.org> | 2018-06-28 16:05:41 -0700 |
commit | 1590a4f64211574ad7a96bb81ad498e4a34fbbd0 (patch) | |
tree | baddd448a63bde07ca70a6eb78e12d44c75cbba9 /releases/scripts | |
parent | 0f8bd836b9b6d1017a5564cc0e9a3beae4736436 (diff) |
Fix the output of repo list to be 'repo, tag, ref'
This was changed in a previous commit and causes calls to 'git branch'
during the verification job to fail.
Change-Id: I71c248abecf030658371b810d403e1f460933946
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Diffstat (limited to 'releases/scripts')
-rw-r--r-- | releases/scripts/repos.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/releases/scripts/repos.py b/releases/scripts/repos.py index 139347a67..47ce42d88 100644 --- a/releases/scripts/repos.py +++ b/releases/scripts/repos.py @@ -85,7 +85,7 @@ def list_repos(project, args): elif args.release and item['version'] == args.release: repos.add(Repo(repo, ref)) elif not args.release: - repos.add(Repo(repo, ref, item['version'])) + repos.add(Repo(repo, item['version'], ref)) for repo in repos: print(repo) |