Skip to content

Commit

Permalink
Tolerate changelist.format=%d.v%s (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
jglick authored Mar 2, 2021
1 parent 81b7039 commit 68e2355
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/pipeline.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,6 @@ module.exports = {
*/
getArchiveUrl: (build_url, hash) => {
let shortHash = hash.substring(0, 12);
return build_url + 'artifact/**/*.' + shortHash + '/*.' + shortHash + '*/*zip*/archive.zip';
return build_url + 'artifact/**/*' + shortHash + '*/*' + shortHash + '*/*zip*/archive.zip';
}
};

0 comments on commit 68e2355

Please sign in to comment.