This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#' Release an R package to our local repository on ourserver | |
#' | |
#' from where it can then be installed (without this package) by | |
#' install.packages(pkg,repos='http://ourserver.com/R',type='source') | |
#' | |
#' Modified from release function in devtools. | |
#' @param pkg package description see \link[devtools]{release} | |
#' @param check if TRUE, run checking, otherwise omit it. This is useful if | |
#' you've just checked your package and you're ready to release it. | |
#' @param user defaults to myuser |