diff --git a/helper.sh b/helper.sh index 3561ba3..272bcd4 100755 --- a/helper.sh +++ b/helper.sh @@ -40,7 +40,7 @@ enable_venv(){ case "$1" in i|-i|install|--install) python -m venv --upgrade-deps "$VENV_PATH" - mkdir -pv "$JUPYTERLAB_SETTINGS_DIR"/@jupyterlab/{notebook-extension,extensionmanager-extension,apputils-extension} + mkdir -p "$JUPYTERLAB_SETTINGS_DIR"/@jupyterlab/{notebook-extension,extensionmanager-extension,apputils-extension} # Setting it to zero doesn't have the expected result, therefore, let's set it to an abnormally large number. echo '{ "maxNumberOutputs": 10000000000 }' > "$JUPYTERLAB_SETTINGS_DIR"/@jupyterlab/notebook-extension/tracker.jupyterlab-settings echo '{ "disclaimed": true }' > "$JUPYTERLAB_SETTINGS_DIR"/@jupyterlab/extensionmanager-extension/plugin.jupyterlab-settings @@ -73,7 +73,7 @@ case "$1" in ;; U|-U|uninstall|--uninstall) - rm -rfv "$VENV_PATH" "$JUPYTER_ROOT_PATH" "$R_LIBS_SITE" .ipynb_checkpoints __pycache__ + rm -rf "$VENV_PATH" "$JUPYTER_ROOT_PATH" "$R_LIBS_SITE" .ipynb_checkpoints __pycache__ ;; l|-l|launch|--launch)