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 | |
parent | 404defb59bb9353fcb2b4a74488b3480b22c961e (diff) |
adds xcopy param to recursively copy runtime folder (#3378)
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | book/src/install.md | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -50,8 +50,8 @@ config directory (for example `~/.config/helix/runtime` on Linux/macOS, or `%App | 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` | This location can be overridden via the `HELIX_RUNTIME` environment variable. 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 |