From 1688c06ea3daaaffbed1fd1612280e0ea721b2c1 Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Wed, 26 Jul 2023 11:59:30 +0400 Subject: [PATCH] Improve docs in setup-julia-packages.bash --- minimal-notebook/setup-scripts/setup-julia-packages.bash | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/minimal-notebook/setup-scripts/setup-julia-packages.bash b/minimal-notebook/setup-scripts/setup-julia-packages.bash index faeee01e..7cc0a45f 100755 --- a/minimal-notebook/setup-scripts/setup-julia-packages.bash +++ b/minimal-notebook/setup-scripts/setup-julia-packages.bash @@ -17,9 +17,9 @@ Pkg.add([ Pkg.precompile(); ' -# Move the kernelspec out to the system share location. Avoids -# problems with runtime UID change not taking effect properly on the -# .local folder in the jovyan home dir. move kernelspec out of home +# Move the kernelspec out of ${HOME} to the system share location. +# Avoids problems with runtime UID change not taking effect properly +# on the .local folder in the jovyan home dir. mv "${HOME}/.local/share/jupyter/kernels/julia"* "${CONDA_DIR}/share/jupyter/kernels/" chmod -R go+rx "${CONDA_DIR}/share/jupyter" rm -rf "${HOME}/.local"