Skip to content

Commit

Permalink
fix missing ";\n"
Browse files Browse the repository at this point in the history
  • Loading branch information
Philipp Baumann committed Sep 26, 2023
1 parent ed9bcde commit 0fc293f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion R/find_rev.R
Original file line number Diff line number Diff line change
Expand Up @@ -473,11 +473,12 @@ get_system_pkgs(system_pkgs))
LC_PAPER = "en_US.UTF-8"
)
)
paste(
locale_vars <- paste(
Map(function(x, nm) paste0(nm, " = ", x),
nm = names(locale_variables), x = locale_variables),
collapse = ";\n "
)
paste0(locale_vars, ";\n")
}

generate_rstudio_pkgs <- function(ide, flag_git_archive, flag_rpkgs){
Expand Down
3 changes: 2 additions & 1 deletion dev/build_envs.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -557,11 +557,12 @@ get_system_pkgs(system_pkgs))
LC_PAPER = "en_US.UTF-8"
)
)
paste(
locale_vars <- paste(
Map(function(x, nm) paste0(nm, " = ", x),
nm = names(locale_variables), x = locale_variables),
collapse = ";\n "
)
paste0(locale_vars, ";\n")
}
generate_rstudio_pkgs <- function(ide, flag_git_archive, flag_rpkgs){
Expand Down
2 changes: 1 addition & 1 deletion inst/extdata/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ let
LC_ALL = en_US.UTF-8;
LC_TIME = en_US.UTF-8;
LC_MONETARY = en_US.UTF-8;
LC_PAPER = en_US.UTF-8
LC_PAPER = en_US.UTF-8;
buildInputs = [ git_archive_pkgs system_packages ];
shellHook = "R --vanilla";
}

0 comments on commit 0fc293f

Please sign in to comment.