From 08a787fd8245fafef0ca7562c14c5e85084c6350 Mon Sep 17 00:00:00 2001 From: Jordan Bradford <36420801+jrdnbradford@users.noreply.github.com> Date: Tue, 6 Jun 2023 09:40:32 -0400 Subject: [PATCH] Quote `pwd` to prevent error if dir has spaces --- 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 147c9dd..fc2d9ab 100644 --- a/docs/contributing/dev-setup.md +++ b/docs/contributing/dev-setup.md @@ -24,7 +24,7 @@ The easiest & safest way to develop & test TLJH is with [Docker](https://www.doc --detach \ --name=tljh-dev \ --publish 12000:80 \ - --mount type=bind,source=$(pwd),target=/srv/src \ + --mount type=bind,source="$(pwd)",target=/srv/src \ tljh-systemd ```