Skip to content

Commit

Permalink
Fixed website build with missing comma in replace.js (apache#2562)
Browse files Browse the repository at this point in the history
  • Loading branch information
merlimat authored Sep 12, 2018
1 parent 29a8af5 commit bf374fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions site2/website/scripts/replace.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ const options = {
`${latestVersion}`,
binaryReleaseUrl(`${latestVersion}`),
connectorReleaseUrl(`${latestVersion}`),
prestoPulsarReleaseUrl(`${latestVersion}`)
prestoPulsarReleaseUrl(`${latestVersion}`),
downloadPageUrl(),
rpmReleaseUrl(`${latestVersion}`, ""),
rpmReleaseUrl(`${latestVersion}`, "-debuginfo"),
Expand Down Expand Up @@ -129,4 +129,4 @@ for (v of versions) {
dry: true
};
doReplace(opts);
}
}

0 comments on commit bf374fc

Please sign in to comment.