From e0f6606d705f42b42285d40f2da9173ffde01da3 Mon Sep 17 00:00:00 2001 From: Gilquin <laurent.gilquin@ens-lyon.fr> Date: Fri, 2 Aug 2024 16:27:29 +0200 Subject: [PATCH] fix: correct typos --- docker/scripts/py_setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/scripts/py_setup.sh b/docker/scripts/py_setup.sh index ce6cab5..55269f5 100755 --- a/docker/scripts/py_setup.sh +++ b/docker/scripts/py_setup.sh @@ -18,12 +18,12 @@ cat <<EOF >"/home/${DEFAULT_USER}/.config/rstudio/rstudio-prefs.json" } EOF -# setup reticulate environment variable +# setup reticulate environment variables cat <<EOF >"/home/${DEFAULT_USER}/.Rprofile" Sys.setenv("RETICULATE_PYTHON_ENV"="${MAMBA_ENV_DIR}") Sys.setenv("RETICULATE_CONDA"="${MAMBA_EXE}") EOF -chown "${DEFAULT_USER}:${DEFAULT_USER}" "/home/${DEFAULT_USER}/.Rprofile" +chown "${DEFAULT_USER}":"${DEFAULT_USER}" "/home/${DEFAULT_USER}/.Rprofile" # change matplotlib default figure dpi "${MAMBA_ENV_DIR}/bin/python" -c "import matplotlib; print(matplotlib.matplotlib_fname())" | \ -- GitLab