Skip to content

Commit

Permalink
Re-enable the high-sierra links
Browse files Browse the repository at this point in the history
They were included only in the js code in d30780a, and need to be in the
typescript code as well, so they were overwritten when the javascript
was rebuilt.
  • Loading branch information
jimhester committed Apr 9, 2020
1 parent 7fe5cad commit 155c137
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup-r/lib/installer.js
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ function getFileNameMacOS(version) {
}
function getDownloadUrlMacOS(version) {
if (version == "devel") {
return "http://mac.r-project.org/el-capitan/R-devel/R-devel-el-capitan-signed.pkg";
return "https://mac.r-project.org/high-sierra/R-devel/R-devel.pkg";
}
const filename = getFileNameMacOS(version);
if (semver.eq(version, "3.2.5")) {
Expand Down
2 changes: 1 addition & 1 deletion setup-r/src/installer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ function getFileNameMacOS(version: string): string {

function getDownloadUrlMacOS(version: string): string {
if (version == "devel") {
return "http://mac.r-project.org/el-capitan/R-devel/R-devel-el-capitan-signed.pkg";
return "https://mac.r-project.org/high-sierra/R-devel/R-devel.pkg";
}
const filename: string = getFileNameMacOS(version);

Expand Down

0 comments on commit 155c137

Please sign in to comment.