From 82cfd068cc4956d90dd671c94df77976d0b25ef3 Mon Sep 17 00:00:00 2001 From: Chris Kennedy Date: Wed, 25 Apr 2018 11:54:20 -0700 Subject: [PATCH] Readme.md: fix instructions for dirs with spaces (#351) $PWD needs to be surrounded in quotes so that the commands work when any folder in the path has a space in it. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6827696c932f..c2957db2fed9 100644 --- a/README.md +++ b/README.md @@ -220,8 +220,8 @@ Beautiful Jekyll is meant to be so simple to use that you can do it all within t ```bash cd - docker build -t beautiful-jekyll $PWD - docker run -d -p 4000:4000 --name beautiful-jekyll -v $PWD:/srv/jekyll beautiful-jekyll + docker build -t beautiful-jekyll "$PWD" + docker run -d -p 4000:4000 --name beautiful-jekyll -v "$PWD":/srv/jekyll beautiful-jekyll ```