diff options
author | NotAgentBilly | 2022-09-05 13:42:17 +0000 |
---|---|---|
committer | GitHub | 2022-09-05 13:42:17 +0000 |
commit | df1ed0a5fd02cc89ccfa3bf0912848249bebae6d (patch) | |
tree | 87b896ce4c0508290f32a64498110e8e1de21429 /book/src | |
parent | fb92d71d087e8e8f5c4b28acab9cfdd65857d4c1 (diff) |
xcopy - assume destination is a directory (#3686)
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 497dd0a4..d7a51ac2 100644 --- a/book/src/install.md +++ b/book/src/install.md @@ -66,8 +66,8 @@ via the `HELIX_RUNTIME` environment variable. | OS | command | |-------------------|-----------| -|windows(cmd.exe) |`xcopy /e runtime %AppData%/helix/runtime` | -|windows(powershell)|`xcopy /e runtime $Env:AppData\helix\runtime` | +|windows(cmd.exe) |`xcopy /e /i runtime %AppData%/helix/runtime` | +|windows(powershell)|`xcopy /e /i runtime $Env:AppData\helix\runtime` | |linux/macos |`ln -s $PWD/runtime ~/.config/helix/runtime`| ## Finishing up the installation |