Skip to content

Commit aadbcfb

Browse files
committed
fix: explicitly specify target dir in documentation
1 parent a82b253 commit aadbcfb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ cd dotfiles/ # important
1717
Then for each application that you want to have configured like mine, stow its directory
1818

1919
```bash
20-
stow nvim
21-
stow sqlite
20+
stow --target="$HOME" nvim
21+
stow --target="$HOME" sqlite
2222
```
2323

2424
Or if you want to copy all my configs and are feeling lazy like me, use:
2525

2626
```bash
27-
find . -maxdepth 1 -type d -name '[!.]*' -exec stow '{}' \;
27+
find . -maxdepth 1 -type d -name '[!.]*' -exec stow --target="$HOME" '{}' \;
2828
```
2929

3030
This will run `stow` for every directory under `dotfiles/`.

0 commit comments

Comments
 (0)