From 031757af45e676f948c4382972b69e5cb40cb079 Mon Sep 17 00:00:00 2001 From: Dongbo Wang Date: Sat, 13 Nov 2021 09:25:31 -0800 Subject: [PATCH] Fix escaping double quotes --- tools/issue-mgmt/CloseDupIssues.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/issue-mgmt/CloseDupIssues.ps1 b/tools/issue-mgmt/CloseDupIssues.ps1 index c3312825..274ec0b1 100644 --- a/tools/issue-mgmt/CloseDupIssues.ps1 +++ b/tools/issue-mgmt/CloseDupIssues.ps1 @@ -49,7 +49,7 @@ foreach ($item in $issues) $comment = @' This issue was fixed in 2.2.0-beta3 version of PSReadLine. You can fix this by upgrading to the latest [2.2.0-beta4 version of PSReadLine](https://www.powershellgallery.com/packages/PSReadLine/2.2.0-beta4). Instructions for doing so: 1. stop all instances of `pwsh`. -2. from `cmd.exe` on Windows or `bash` on Linux, run: `pwsh -noprofile -command """Install-Module PSReadLine -AllowPrerelease -Force"""` +2. from `cmd.exe` on Windows or `bash` on Linux, run: `pwsh -noprofile -command \"Install-Module PSReadLine -AllowPrerelease -Force\"` --------