Skip to content

Commit

Permalink
Merge pull request #99 from Mudlet/keneanung-fix-macos-intel-links
Browse files Browse the repository at this point in the history
Fix some bugs handling osx intel links
  • Loading branch information
keneanung authored Nov 4, 2024
2 parents d66ca01 + 7d4d8ea commit 2cafe05
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,9 +184,14 @@ const setDeploymentLinks = async (
}
}
if (pair.platform === "osx") {
if (/x64_86/.test(pair.url)) {
if (/x86_64/.test(pair.url)) {
//TODO support for "legacy" PRs with only one osx platform entry. remove when these are rolled through
updateCommentUrl(pair.platform, pair.url, deploymentComment);
updateCommentUrl(
pair.platform,
pair.url,
pair.commitid,
deploymentComment
);
pair.platform = "osx intel";
} else if (/arm64/.test(pair.url)) {
pair.platform = "osx arm";
Expand Down

0 comments on commit 2cafe05

Please sign in to comment.