Skip to content
This repository was archived by the owner on Sep 1, 2024. It is now read-only.

Commit e0e4122

Browse files
authored
Fix invalid copy command in docs (#25)
`cp` commands expects a destination argument which was missing.
1 parent a57ff05 commit e0e4122

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/customize_terminal/customize_terminal.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ In order to customize the terminal, you need to edit the following files
3232

3333
Copy it to `mysite/layouts`
3434
```bash
35-
$mkdir -p ./layouts/partials
36-
$cp ./themes/hugo-theme-shell/layouts/index.html
37-
$cp ./themes/hugo-theme-shell/partials/typeIndex.html
35+
$ mkdir -p ./layouts/partials
36+
$ cp themes/hugo-theme-shell/layouts/index.html layouts/partials
37+
$ cp themes/hugo-theme-shell/partials/typeIndex.html layouts/partials
3838
```
3939

4040
## 2. Edit file
@@ -160,4 +160,4 @@ Many of the variables in `typeIndex.html` (`envWithDir, cat ... `) are defined i
160160
| leaf | `[folderName] etc` |
161161
| ps1delay | `display speed of [userName]@[pcName]:~/` |
162162
| stdoutdelay | `display speed of [description], [leaf]` |
163-
| commanddelay | `display speed of command(cd [workdir] / cat [profile])` |
163+
| commanddelay | `display speed of command(cd [workdir] / cat [profile])` |

0 commit comments

Comments
 (0)