Skip to content

Commit

Permalink
fix(installer): replace '{{ download }}' with filename (for go and fl…
Browse files Browse the repository at this point in the history
…utter, maybe others)
  • Loading branch information
coolaj86 committed Jan 2, 2024
1 parent 51ede48 commit c70dfe8
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions _webi/builds-cacher.js
Original file line number Diff line number Diff line change
Expand Up @@ -368,6 +368,15 @@ BuildsCacher.create = function ({ ALL_TERMS, installers, caches }) {
}

build.target = buildTarget;

// TODO move this to releases.js for the few projects that need it
if (projInfo.download) {
build.download = projInfo.download.replace(
/{{ download }}/,
build.download,
);
}

meta.packages.push(build);
}

Expand Down

0 comments on commit c70dfe8

Please sign in to comment.