R/insert_blank.R

Defines functions insert_blank

Documented in insert_blank

#' Adds a blank line at the end of the current dockerfile
#'
#' @param dockerfile, a specification of the contents of the dockerfile
#'
#' @return `dockerfile`, a specification of the contents of the dockerfile
#' @export
#'
#' @examples
#' dockerfile() %>%
#'   insert_blank() %>%
#'   write_dockerfile()
insert_blank <- function(dockerfile){
  return(c(dockerfile, ' '=''))
}
uncoast-unconf/whaler documentation built on Oct. 31, 2020, 9:10 p.m.