From 6a0f50c98e3df49d61ba8d3f2e99e875048ae495 Mon Sep 17 00:00:00 2001 From: Kazuki Matsuda Date: Tue, 18 Feb 2025 16:35:16 +0900 Subject: [PATCH 1/2] unuse -q option --- jupyterlab/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jupyterlab/run.sh b/jupyterlab/run.sh index 0c3780dc..2f218cf2 100755 --- a/jupyterlab/run.sh +++ b/jupyterlab/run.sh @@ -18,7 +18,7 @@ if ! command -v jupyter-lab > /dev/null 2>&1; then exit 1 fi # install jupyterlab - pipx install -q jupyterlab + pipx install jupyterlab > /dev/null 2>&1 printf "%s\n\n" "🥳 jupyterlab has been installed" else printf "%s\n\n" "🥳 jupyterlab is already installed" From 7ce78031b98070a0a213bca5186cffd4a971ab72 Mon Sep 17 00:00:00 2001 From: Kazuki Matsuda Date: Tue, 18 Feb 2025 18:51:57 +0900 Subject: [PATCH 2/2] Update README.md --- jupyterlab/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jupyterlab/README.md b/jupyterlab/README.md index c285c275..8c2af03f 100644 --- a/jupyterlab/README.md +++ b/jupyterlab/README.md @@ -17,7 +17,7 @@ A module that adds JupyterLab in your Coder template. module "jupyterlab" { count = data.coder_workspace.me.start_count source = "registry.coder.com/modules/jupyterlab/coder" - version = "1.0.23" + version = "1.0.30" agent_id = coder_agent.example.id } ```