From af821474235d3c5e1f49cee7c6cf636abb0874c4 Mon Sep 17 00:00:00 2001 From: Thomas Boop <52323235+thboop@users.noreply.github.com> Date: Thu, 8 Oct 2020 16:43:28 -0400 Subject: [PATCH] Add -Append flag to powershell workflow commands --- docs/commands.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/commands.md b/docs/commands.md index 1b09af48..905321ab 100644 --- a/docs/commands.md +++ b/docs/commands.md @@ -192,5 +192,5 @@ export function addPath(inputPath: string): void {} Powershell does not use UTF8 by default. You will want to make sure you write in the correct encoding. For example, to set the path: ``` steps: - - run: echo "mypath" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -``` \ No newline at end of file + - run: echo "mypath" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append +```