Skip to content

Delete space in depends section of description to work with devtools#1

Open
JesseKolb wants to merge 1 commit into
cran:masterfrom
JesseKolb:master
Open

Delete space in depends section of description to work with devtools#1
JesseKolb wants to merge 1 commit into
cran:masterfrom
JesseKolb:master

Conversation

@JesseKolb

@JesseKolb JesseKolb commented Jun 28, 2016

Copy link
Copy Markdown

The current DESCRIPTION file throws an error when used with install_github due to the way parse_deps parses the Depends section because of the space after the parenthesis. This is just a deletion of the space so that it can work properly with install_github. An example of the change is shown below:

> devtools::parse_deps("Depends: Boom (>= 0.4) , R (>= 3.1.0)")
Error in devtools::parse_deps("Depends: Boom (>= 0.4) , R (>= 3.1.0)") :
Invalid comparison operator in dependency: >=
> devtools::parse_deps("Depends: Boom (>= 0.4), R (>= 3.1.0)")
name compare version
1 Depends: Boom >= 0.4

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant