From 8941cc1f471731f0223b69f94286bbd191e865ee Mon Sep 17 00:00:00 2001 From: Jesse Glick Date: Tue, 8 Sep 2020 14:13:53 -0400 Subject: [PATCH] Accommodate plugins defining a custom changelist.format --- lib/pipeline.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pipeline.js b/lib/pipeline.js index e8aac82..46cd65d 100644 --- a/lib/pipeline.js +++ b/lib/pipeline.js @@ -68,6 +68,6 @@ module.exports = { */ getArchiveUrl: (build_url, hash) => { let shortHash = hash.substring(0, 12); - return build_url + 'artifact/**/*-rc*.' + shortHash + '/*-rc*.' + shortHash + '*/*zip*/archive.zip'; + return build_url + 'artifact/**/*.' + shortHash + '/*.' + shortHash + '*/*zip*/archive.zip'; } };