Skip to content

Commit 87a232c

Browse files
author
Christopher Johnson
authored
Fix windows directions in release notes (#307)
1 parent a3c2479 commit 87a232c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

releaseNote.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@
2424
- Treat warnings as errors during compile (#249)
2525

2626
## Windows x64
27-
We recommend configuring the runner under "<DRIVE>:\actions-runner". This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows
27+
We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows
2828
```
2929
// Create a folder under the drive root
3030
mkdir \actions-runner ; cd \actions-runner
3131
// Download the latest runner package
3232
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v<RUNNER_VERSION>/actions-runner-win-x64-<RUNNER_VERSION>.zip -OutFile actions-runner-win-x64-<RUNNER_VERSION>.zip
3333
// Extract the installer
3434
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
35-
[System.IO.Compression.ZipFile]::ExtractToDirectory("$HOME\Downloads\actions-runner-win-x64-<RUNNER_VERSION>.zip", "$PWD")
35+
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-<RUNNER_VERSION>.zip", "$PWD")
3636
```
3737

3838
## OSX

0 commit comments

Comments
 (0)