-
Notifications
You must be signed in to change notification settings - Fork 40
Closed
Labels
Description
callr::r(
function() {
print(Sys.getenv("MY_ENV"))
print(Sys.getenv("R_PROFILE_USER"))
},
user_profile = TRUE,
env = c(
"R_PROFILE_USER" = "~/.Rprofile",
"MY_ENV" = "MILES"
),
show = TRUE
)
#> [1] "MILES"
#> [1] ""
#> [1] ""Created on 2021-03-31 by the reprex package (v0.3.0)
I was expecting this to work, in combination with user_profile = TRUE so that I could set the profile for the session to a specific file.
Reactions are currently unavailable