Skip to content

Commit

Permalink
repo: include SystemRequirements field as well
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborcsardi committed Jun 24, 2023
1 parent bf6275e commit a0925ea
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion R/repo.R
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ repo <- local({
pkgs$Platform <- character()
pkgs$GraphicsAPIVersion <- character()
pkgs$InternalsId <- character()
pkgs$SystemRequirements <- character()
}

pkgs
Expand Down Expand Up @@ -179,7 +180,8 @@ repo <- local({
RVersion = rminor,
Platform = unname(desc$get("RemoteBuildPlatform")),
GraphicsAPIVersion = unname(desc$get("GraphicsAPIVersion")),
InternalsId = unname(desc$get("InternalsId"))
InternalsId = unname(desc$get("InternalsId")),
SystemRequirements = unname(desc$get("SystemRequirements")),
)

pkg
Expand Down

0 comments on commit a0925ea

Please sign in to comment.