diff options
author | jdrst | 2022-08-10 01:47:04 +0000 |
---|---|---|
committer | GitHub | 2022-08-10 01:47:04 +0000 |
commit | 598aa7c424246d6955bbadba7b42b895fe492e5c (patch) | |
tree | c495cad5a77cfe94b346177fb03550d243b1509a /book/src | |
parent | 404defb59bb9353fcb2b4a74488b3480b22c961e (diff) |
adds xcopy param to recursively copy runtime folder (#3378)
Diffstat (limited to 'book/src')
-rw-r--r-- | book/src/install.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/book/src/install.md b/book/src/install.md index ea46976f..b3109dd9 100644 --- a/book/src/install.md +++ b/book/src/install.md @@ -67,8 +67,8 @@ via the `HELIX_RUNTIME` environment variable. | OS | command | |-------------------|-----------| -|windows(cmd.exe) |`xcopy runtime %AppData%/helix/runtime` | -|windows(powershell)|`xcopy runtime $Env:AppData\helix\runtime` | +|windows(cmd.exe) |`xcopy /e runtime %AppData%/helix/runtime` | +|windows(powershell)|`xcopy /e runtime $Env:AppData\helix\runtime` | |linux/macos |`ln -s $PWD/runtime ~/.config/helix/runtime`| ## Finishing up the installation |