Skip to content

Commit

Permalink
adds xcopy param to recursively copy runtime folder (#3378)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdrst committed Aug 10, 2022
1 parent 404defb commit 598aa7c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions book/src/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 598aa7c

Please sign in to comment.