From 4ef121fca61536cb419094e5d28c5401f166dd68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jayson=20Basa=C3=B1es?= Date: Mon, 22 Mar 2021 13:04:07 -0600 Subject: [PATCH] Fix possible typo in README The instructions for copying the `config.toml` is this: ``` cp themes/hugo-story/exampleSite/config.toml/ ``` But that turned out be an error when I tried it. This gets printed out in the terminal: ``` usage: cp [-R [-H | -L | -P]] [-fi | -n] [-apvXc] source_file target_file cp [-R [-H | -L | -P]] [-fi | -n] [-apvXc] source_file ... target_directory ``` I believe the correct instruction is this: ``` cp themes/hugo-story/exampleSite/config.toml ./ ``` --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 48fd791..2192281 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ git submodule add https://github.com/caressofsteel/hugo-story.git themes/hugo-st ### 4. Copy `data` and `config.toml` with overwrite from `exampleSite` ``` cp -r themes/hugo-story/exampleSite/data ./ -cp themes/hugo-story/exampleSite/config.toml/ +cp themes/hugo-story/exampleSite/config.toml ./ ``` > _Hint: Using `config.toml` tells Hugo to use the theme and sets some basic theme parameters._ @@ -95,4 +95,4 @@ This theme was created using the _Story_ template by [HTML5 UP](https://html5up. Creative Commons License -This Hugo theme is licensed under the [Creative Commons Attribution 3.0 License](LICENSE). \ No newline at end of file +This Hugo theme is licensed under the [Creative Commons Attribution 3.0 License](LICENSE).