Skip to content

Commit

Permalink
do not use "."
Browse files Browse the repository at this point in the history
  • Loading branch information
randy3k committed Sep 8, 2018
1 parent bc743fb commit b85040e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
16 changes: 8 additions & 8 deletions support/R Package.sublime-build
Original file line number Diff line number Diff line change
Expand Up @@ -3,56 +3,56 @@
"working_dir": "$folder",
"cmd": [
"Rscript", "-e",
"devtools::install(\".\")"
"devtools::install()"
],
"variants": [
{
"name": "Clean and Build",
"cmd": [
"Rscript", "-e",
"devtools::install(\".\", local=FALSE)"
"devtools::install(local=FALSE)"
]
},
{
"name": "Test",
"cmd": [
"Rscript", "-e",
"devtools::test(\".\")"
"devtools::test()"
]
},
{
"name": "Check",
"cmd": [
"Rscript", "-e",
"devtools::check(\".\")"
"devtools::check()"
]
},
{
"name": "Document",
"cmd": [
"Rscript", "-e",
"devtools::document(\".\")"
"devtools::document()"
]
},
{
"name": "Compile C++ Attributes",
"cmd": [
"Rscript", "-e",
"Rcpp::compileAttributes(\".\")"
"Rcpp::compileAttributes()"
]
},
{
"name": "Build Source",
"cmd": [
"Rscript", "-e",
"devtools::build(\".\")"
"devtools::build()"
]
},
{
"name": "Build Binary",
"cmd": [
"Rscript", "-e",
"devtools::build(\".\", binary=TRUE)"
"devtools::build(binary=TRUE)"
]
},
{
Expand Down
14 changes: 7 additions & 7 deletions support/R-IDE.sublime-menu
Original file line number Diff line number Diff line change
Expand Up @@ -46,49 +46,49 @@
"caption": "Clean and Build Package",
"command": "ride_package_exec",
"args": {
"cmd": "devtools::install(\".\", local=FALSE)"
"cmd": "devtools::install(local=FALSE)"
}
},
{
"caption": "Test Package",
"command": "ride_package_exec",
"args": {
"cmd": "devtools::test(\".\")"
"cmd": "devtools::test()"
}
},
{
"caption": "Check Package",
"command": "ride_package_exec",
"args": {
"cmd": "devtools::check(\".\")"
"cmd": "devtools::check()"
}
},
{
"caption": "Document Package",
"command": "ride_package_exec",
"args": {
"cmd": "devtools::document(\".\")"
"cmd": "devtools::document()"
}
},
{
"caption": "Compile C++ Attributes",
"command": "ride_package_exec",
"args": {
"cmd": "Rcpp::compileAttributes(\".\")"
"cmd": "Rcpp::compileAttributes()"
}
},
{
"caption": "Build Source Package",
"command": "ride_package_exec",
"args": {
"cmd": "devtools::build(\".\")"
"cmd": "devtools::build()"
}
},
{
"caption": "Build Binary Package",
"command": "ride_package_exec",
"args": {
"cmd": "devtools::build(\".\", binary=TRUE)"
"cmd": "devtools::build(binary=TRUE)"
}
},
{
Expand Down

0 comments on commit b85040e

Please sign in to comment.