Skip to content

Commit 42a5fe7

Browse files
authored
Merge pull request #1531 from mathbunnyru/asalikhov/fix_notebook_args
Fix NOTEBOOK_ARGS pass
2 parents 9701743 + d73079e commit 42a5fe7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

base-notebook/start-notebook.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ fi
1616

1717
if [[ -n "${JUPYTER_ENABLE_LAB}" ]]; then
1818
# shellcheck disable=SC1091,SC2086
19-
exec /usr/local/bin/start.sh ${wrapper} ${NOTEBOOK_ARGS} jupyter lab "$@"
19+
exec /usr/local/bin/start.sh ${wrapper} jupyter lab ${NOTEBOOK_ARGS} "$@"
2020
else
2121
echo "WARNING: Jupyter Notebook deprecation notice https://github.com/jupyter/docker-stacks#jupyter-notebook-deprecation-notice."
2222
# shellcheck disable=SC1091,SC2086
23-
exec /usr/local/bin/start.sh ${wrapper} ${NOTEBOOK_ARGS} jupyter notebook "$@"
23+
exec /usr/local/bin/start.sh ${wrapper} jupyter notebook ${NOTEBOOK_ARGS} "$@"
2424
fi

0 commit comments

Comments
 (0)