From 1c74199c60079021d396c069fe15fa79325faca4 Mon Sep 17 00:00:00 2001 From: Roger Chao Date: Wed, 23 Oct 2024 09:08:50 -0700 Subject: [PATCH 1/2] fix(jupyterlab): update command -v from jupyterlab to jupyter-lab --- jupyterlab/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jupyterlab/run.sh b/jupyterlab/run.sh index aff21b72..0c3780dc 100755 --- a/jupyterlab/run.sh +++ b/jupyterlab/run.sh @@ -9,7 +9,7 @@ BOLD='\033[0;1m' printf "$${BOLD}Installing jupyterlab!\n" # check if jupyterlab is installed -if ! command -v jupyterlab > /dev/null 2>&1; then +if ! command -v jupyter-lab > /dev/null 2>&1; then # install jupyterlab # check if pipx is installed if ! command -v pipx > /dev/null 2>&1; then From 5e565b2d39b58e93b0c3e24f9d706090020716d7 Mon Sep 17 00:00:00 2001 From: Roger Chao Date: Wed, 23 Oct 2024 12:37:18 -0700 Subject: [PATCH 2/2] Bumping version in jupyterlab/README.md from v1.0.22 to 1.0.23 --- jupyterlab/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jupyterlab/README.md b/jupyterlab/README.md index 52d5a502..ea5ea67b 100644 --- a/jupyterlab/README.md +++ b/jupyterlab/README.md @@ -16,7 +16,7 @@ A module that adds JupyterLab in your Coder template. ```tf module "jupyterlab" { source = "registry.coder.com/modules/jupyterlab/coder" - version = "1.0.22" + version = "1.0.23" agent_id = coder_agent.example.id } ```