From 2b85413228925d114f1f126dc0c0d76e1acf3353 Mon Sep 17 00:00:00 2001 From: sorinvoicu <61691256+sorinvoicu@users.noreply.github.com> Date: Thu, 11 Apr 2024 08:40:13 +0000 Subject: [PATCH] fix quotes --- scripts/install_sys_deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install_sys_deps.sh b/scripts/install_sys_deps.sh index 2fc9bbc..91abf68 100755 --- a/scripts/install_sys_deps.sh +++ b/scripts/install_sys_deps.sh @@ -23,7 +23,7 @@ rm -rf /var/lib/apt/lists/* curl -Ls https://github.com/r-lib/rig/releases/download/latest/rig-linux-$(arch)-latest.tar.gz | tar xz -C /usr/local rig add ${R_VERSION} --without-p3m --without-cran-mirror --without-pak #echo "pak::repo_add(CRAN = paste0('RSPM@', '${CRAN_DATE}'))" >> /opt/R/${R_VERSION}/lib/R/etc/Rprofile.site -echo "options(repos = c(CRAN = "https://packagemanager.posit.co/cran/__linux__/jammy/${CRAN_DATE}"))" >> /opt/R/${R_VERSION}/lib/R/etc/Rprofile.site +echo "options(repos = c(CRAN = 'https://packagemanager.posit.co/cran/__linux__/jammy/${CRAN_DATE}'))" >> /opt/R/${R_VERSION}/lib/R/etc/Rprofile.site # Install quarto QUARTO_DL_URL="https://github.com/quarto-dev/quarto-cli/releases/download/v${QUARTO_VERSION}/quarto-${QUARTO_VERSION}-linux-$(dpkg --print-architecture).deb"