From 87a232c4776f5cf811a1a777eb6555db659ffae3 Mon Sep 17 00:00:00 2001 From: Christopher Johnson Date: Wed, 29 Jan 2020 12:58:09 -0500 Subject: [PATCH] Fix windows directions in release notes (#307) --- releaseNote.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/releaseNote.md b/releaseNote.md index 843e4629976..f580cc3edf0 100644 --- a/releaseNote.md +++ b/releaseNote.md @@ -24,7 +24,7 @@ - Treat warnings as errors during compile (#249) ## Windows x64 -We recommend configuring the runner under ":\actions-runner". This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows +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 ``` // Create a folder under the drive root mkdir \actions-runner ; cd \actions-runner @@ -32,7 +32,7 @@ mkdir \actions-runner ; cd \actions-runner Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v/actions-runner-win-x64-.zip -OutFile actions-runner-win-x64-.zip // Extract the installer Add-Type -AssemblyName System.IO.Compression.FileSystem ; -[System.IO.Compression.ZipFile]::ExtractToDirectory("$HOME\Downloads\actions-runner-win-x64-.zip", "$PWD") +[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-.zip", "$PWD") ``` ## OSX