ropensci / ruODK

ruODK: An R Client for the ODK Central API
https://docs.ropensci.org/ruODK/
GNU General Public License v3.0
42 stars 13 forks source link

Install fails #81

Closed arestrom closed 4 years ago

arestrom commented 4 years ago

Problem

Installation fails when using remotes::install_github("dbca-wa/ruODK", dependencies = TRUE)

Error: Failed to install 'unknown package' from GitHub: HTTP error 404. No commit found for the ref master

It looks like the master branch is now called main, so installation instructions should probably be edited. Love the package!

florianm commented 4 years ago

Hi @arestrom, thanks for the heads-up, I totally missed that!

Installation indeed now needs an explicit mention of the main branch in either version of:

remotes::install_github("dbca-wa/ruODK@main", dependencies = TRUE)
remotes::install_github("dbca-wa/ruODK", ref = "main", dependencies = TRUE)

An update to the docs is underway.