fix(coder/modules/jupyterlab): fix a typo (#689)

Closes https://github.com/coder/registry/issues/685

---------

Co-authored-by: Atif Ali <atif@coder.com>
Co-authored-by: Muhammad Atif Ali <me@matifali.dev>
This commit is contained in:
Harsh Singh Panwar 2026-02-04 09:40:27 +05:30 committed by GitHub
parent 08e68a2da4
commit 49a7985bc6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View File

@ -16,7 +16,7 @@ A module that adds JupyterLab in your Coder template.
module "jupyterlab" { module "jupyterlab" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/jupyterlab/coder" source = "registry.coder.com/coder/jupyterlab/coder"
version = "1.2.1" version = "1.2.2"
agent_id = coder_agent.main.id agent_id = coder_agent.main.id
} }
``` ```
@ -29,7 +29,7 @@ JupyterLab is automatically configured to work with Coder's iframe embedding. Fo
module "jupyterlab" { module "jupyterlab" {
count = data.coder_workspace.me.start_count count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/jupyterlab/coder" source = "registry.coder.com/coder/jupyterlab/coder"
version = "1.2.1" version = "1.2.2"
agent_id = coder_agent.main.id agent_id = coder_agent.main.id
config = { config = {
ServerApp = { ServerApp = {

View File

@ -77,7 +77,7 @@ describe("jupyterlab", async () => {
expect(output.exitCode).toBe(1); expect(output.exitCode).toBe(1);
expect(output.stdout).toEqual([ expect(output.stdout).toEqual([
"Checking for a supported installer", "Checking for a supported installer",
"No valid installer is not installed", "No supported installer found.",
"Please install pipx or uv in your Dockerfile/VM image before running this script", "Please install pipx or uv in your Dockerfile/VM image before running this script",
]); ]);
}); });

View File

@ -14,7 +14,7 @@ check_available_installer() {
INSTALLER="uv" INSTALLER="uv"
return return
fi fi
echo "No valid installer is not installed" echo "No supported installer found."
echo "Please install pipx or uv in your Dockerfile/VM image before running this script" echo "Please install pipx or uv in your Dockerfile/VM image before running this script"
exit 1 exit 1
} }