export
This commit is contained in:
parent
d630fc1caa
commit
60a6d81acc
2 changed files with 4 additions and 0 deletions
|
|
@ -4,6 +4,8 @@ export(build_binary_package)
|
||||||
export(build_single_tag)
|
export(build_single_tag)
|
||||||
export(dbcon)
|
export(dbcon)
|
||||||
export(install_package_system_dependencies)
|
export(install_package_system_dependencies)
|
||||||
|
export(set_bin_path)
|
||||||
|
export(set_codename)
|
||||||
export(upload_single_binary_to_s3)
|
export(upload_single_binary_to_s3)
|
||||||
import(progressr)
|
import(progressr)
|
||||||
importFrom(DBI,dbConnect)
|
importFrom(DBI,dbConnect)
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
#' @export
|
||||||
set_codename <- function(codename) {
|
set_codename <- function(codename) {
|
||||||
if (is.null(codename)) {
|
if (is.null(codename)) {
|
||||||
if (Sys.info()["sysname"] == "Linux") {
|
if (Sys.info()["sysname"] == "Linux") {
|
||||||
|
|
@ -25,6 +26,7 @@ set_codename <- function(codename) {
|
||||||
return(codename)
|
return(codename)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#' @export
|
||||||
set_bin_path <- function(r_version_minor, build_for_minor, local_build_root, codename) {
|
set_bin_path <- function(r_version_minor, build_for_minor, local_build_root, codename) {
|
||||||
if (!build_for_minor) {
|
if (!build_for_minor) {
|
||||||
path <- sprintf(
|
path <- sprintf(
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue