format starlark

This commit is contained in:
Willy Kloucek
2022-03-10 13:07:05 +01:00
parent 71235e1e2d
commit bc3be2d640

View File

@@ -963,7 +963,7 @@ def binaryRelease(ctx, name):
folder = "stable"
buildref = ctx.build.ref.replace("refs/tags/v", "")
buildref = buildref.lower()
if buildref.find("-") != -1: # "x.x.x-alpha", "x.x.x-beta", "x.x.x-rc"
if buildref.find("-") != -1: # "x.x.x-alpha", "x.x.x-beta", "x.x.x-rc"
folder = "testing"
target = "/ocis/%s/%s/%s" % (ctx.repo.name.replace("ocis-", ""), folder, buildref)