OHDSI / ResultModelManager

RMM is an R package designed to handle common ohdsi results data management functions by providing a common API for data model migrations and definitions
https://ohdsi.github.io/ResultModelManager/
Apache License 2.0
3 stars 3 forks source link

Main branch DESCRIPTION file is broken #51

Closed egillax closed 7 months ago

egillax commented 7 months ago

Currently installation of the package using remotes fails

remotes::install_github('ohdsi/ResultModelManager') Using github PAT from envvar GITHUB_PAT Downloading GitHub repo ohdsi/ResultModelManager@HEAD Error: Failed to install 'ResultModelManager' from GitHub: Line starting ') ...' is malformed!

This is because of indentation issue,

Authors@R: c(
    person("Jamie", "Gilbert", , "gilbert@ohdsi.org", role = c("aut", "cre"))
) 

should be

Authors@R: c(
    person("Jamie", "Gilbert", , "gilbert@ohdsi.org", role = c("aut", "cre"))
    ) 

Currently this is breaking CI for all reverse dependencies of the package.

azimov commented 7 months ago

Apologies, this was committed by mistake and should now be resolved