Skip to content

Commit

Permalink
Rename 'mac' to 'macos'
Browse files Browse the repository at this point in the history
... why did I bother renaming it in the first place
  • Loading branch information
maddie480 committed Jul 6, 2024
1 parent c15c852 commit 59c8c22
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@

if (stable !== null) {
// set the links to the latest stable
document.getElementById("olympus-macos-latest-link").href = stable.macDownload;
document.getElementById("olympus-macos-latest-link").href = stable.macosDownload;
document.getElementById("olympus-linux-latest-link").href = stable.linuxDownload;

// remove the line saying "Click the '5 published' button under 'Related', then '...main' to download it." since those are now direct links.
const artifactInstructionsMac = document.getElementById("olympus-macos-artifact-instructions");
artifactInstructionsMac.parentNode.removeChild(artifactInstructionsMac);
const artifactInstructionsMacOS = document.getElementById("olympus-macos-artifact-instructions");
artifactInstructionsMacOS.parentNode.removeChild(artifactInstructionsMacOS);
const artifactInstructionsLinux = document.getElementById("olympus-linux-artifact-instructions");
artifactInstructionsLinux.parentNode.removeChild(artifactInstructionsLinux);
}
Expand Down

0 comments on commit 59c8c22

Please sign in to comment.