From daec71b1494a4efad84da392c4d170b188969faf Mon Sep 17 00:00:00 2001 From: Raniere Gaia Costa da Silva Date: Mon, 8 Dec 2025 15:42:00 +0100 Subject: [PATCH] Enclose ${PATH} in double-quotes to avoid problems with white space. Closes https://github.com/jupyterhub/the-littlest-jupyterhub/issues/1054 --- docs/contributing/dev-setup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributing/dev-setup.md b/docs/contributing/dev-setup.md index ff1b6f1..8a61dfe 100644 --- a/docs/contributing/dev-setup.md +++ b/docs/contributing/dev-setup.md @@ -26,7 +26,7 @@ The easiest & safest way to develop & test TLJH is with [Docker](https://www.doc --publish 12000:80 \ --env TLJH_BOOTSTRAP_DEV=yes \ --env TLJH_BOOTSTRAP_PIP_SPEC=/srv/src \ - --env PATH=/opt/tljh/hub/bin:${PATH} \ + --env "PATH=/opt/tljh/hub/bin:${PATH}" \ --mount type=bind,source="$(pwd)",target=/srv/src \ tljh-systemd ```