From e3a413341456d64171bb076c26a0e7f97d5f3914 Mon Sep 17 00:00:00 2001 From: James Lu Date: Thu, 7 Oct 2021 18:52:42 -0700 Subject: [PATCH] Fix regular builds writing to the wrong tag --- .drone.jsonnet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index de447bc..7055af0 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -9,7 +9,7 @@ local build(contrib=false) = { "VERSION": "7.2.10-r2" }, "commands": [ - "./write-tags.sh $VERSION contrib > .tags", + "./write-tags.sh $VERSION" + (if contrib then " contrib" else " ") + "> .tags", "# Will build the following tags:", "cat .tags" ]