forked from Git/hugo-story
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 ./ ```
This commit is contained in:
parent
45804939fa
commit
4ef121fca6
|
@ -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`
|
### 4. Copy `data` and `config.toml` with overwrite from `exampleSite`
|
||||||
```
|
```
|
||||||
cp -r themes/hugo-story/exampleSite/data ./
|
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._
|
> _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.
|
||||||
|
|
||||||
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/" class="license-button"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/3.0/88x31.png"></a>
|
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/" class="license-button"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/3.0/88x31.png"></a>
|
||||||
|
|
||||||
This Hugo theme is licensed under the [Creative Commons Attribution 3.0 License](LICENSE).
|
This Hugo theme is licensed under the [Creative Commons Attribution 3.0 License](LICENSE).
|
||||||
|
|
Loading…
Reference in New Issue