Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion R/build_episode.R
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,9 @@ build_episode_md <- function(path, hash = NULL, outdir = path_built(path),
spinner = sho,
env = c(callr::rcmd_safe_env(),
"RENV_PROFILE" = profile,
"RENV_CONFIG_CACHE_SYMLINKS" = renv_cache_available())
"RENV_CONFIG_CACHE_SYMLINKS" = renv_cache_available(),
"LANGUAGE" = get_config()$lang,
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not completely sure if we should rely on get_config()'s default arg here, or provide another value?

I'd welcome any insights on this, or I will investigate more myself once #644 have been decided.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Well, the failing checks seem to have answered this. A different value is needed. The default only works for the standard setup.

)
)

invisible(outpath)
Expand Down
Loading