From 019fd43a9d22458645c1dc3d36a2610851a4d266 Mon Sep 17 00:00:00 2001 From: textractor Date: Mon, 28 Oct 2024 22:12:35 -0700 Subject: [PATCH] Update creating-a-github-pages-site-with-jekyll.md The `jekyll new --skip-bundle .` step should happen in the root directory. The previous step said to `cd docs` but seems that's not necessary? But if you're still in the docs directory (from the previous step), you'll create the site in the wrong place. Alternatively, remove the `cd docs` command if it's really not needed. --- .../creating-a-github-pages-site-with-jekyll.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/pages/setting-up-a-github-pages-site-with-jekyll/creating-a-github-pages-site-with-jekyll.md b/content/pages/setting-up-a-github-pages-site-with-jekyll/creating-a-github-pages-site-with-jekyll.md index 18a79134730c..9ba19aad8296 100644 --- a/content/pages/setting-up-a-github-pages-site-with-jekyll/creating-a-github-pages-site-with-jekyll.md +++ b/content/pages/setting-up-a-github-pages-site-with-jekyll/creating-a-github-pages-site-with-jekyll.md @@ -82,7 +82,7 @@ Before you can use Jekyll to create a {% data variables.product.prodname_pages % # Removes the contents from your default branch from the working directory ``` -1. To create a new Jekyll site, use the `jekyll new` command: +1. To create a new Jekyll site, use the `jekyll new` command in your repository's root directory: ```shell $ jekyll new --skip-bundle .