Skip to content

Commit b53554b

Browse files
authored
fix(jupyterlab): update command -v from jupyterlab to jupyter-lab (#328)
Update `command -v` from `jupyterlab` to `jupyter-lab` to check to if jupyterlab binary is installed.
1 parent ce5a5b3 commit b53554b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

jupyterlab/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ A module that adds JupyterLab in your Coder template.
1616
```tf
1717
module "jupyterlab" {
1818
source = "registry.coder.com/modules/jupyterlab/coder"
19-
version = "1.0.22"
19+
version = "1.0.23"
2020
agent_id = coder_agent.example.id
2121
}
2222
```

jupyterlab/run.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ BOLD='\033[0;1m'
99
printf "$${BOLD}Installing jupyterlab!\n"
1010

1111
# check if jupyterlab is installed
12-
if ! command -v jupyterlab > /dev/null 2>&1; then
12+
if ! command -v jupyter-lab > /dev/null 2>&1; then
1313
# install jupyterlab
1414
# check if pipx is installed
1515
if ! command -v pipx > /dev/null 2>&1; then

0 commit comments

Comments
 (0)