Make R library if it doesn't exist

This commit is contained in:
2024-08-03 23:44:41 -04:00
parent 64e1404fd8
commit 122027cf5b

View File

@@ -574,6 +574,9 @@ install_dependencies() {
# Install R packages # Install R packages
echo "Installing R packages" echo "Installing R packages"
# Make R library directory if it doesn't exist
[[ -d "$R_LIBS_USER" ]] || mkdir -p "$R_LIBS_USER"
depends_r_str="" depends_r_str=""
depends_r_to_string() { depends_r_to_string() {
for d in "${depends_r[@]}"; do for d in "${depends_r[@]}"; do