releaser: sort globbed files (#52)

This commit is contained in:
Unai Martinez-Corral
2022-07-20 12:46:13 +01:00
committed by GitHub

View File

@@ -70,7 +70,7 @@ def GetListOfArtifacts(argv, files):
if len(flist) < 1: if len(flist) < 1:
stdout.flush() stdout.flush()
raise (Exception("Empty list of files to upload/update!")) raise (Exception("Empty list of files to upload/update!"))
return flist return sorted(flist)
def GetGitHubAPIHandler(token): def GetGitHubAPIHandler(token):