Skip to content

Commit a76f620

Browse files
committed
Fix trailing whitespace after PowerShell backtick line continuations
Lines 198 and 199 had trailing spaces after the backtick character, which broke PowerShell line continuation for the Start-Process command in the Spectre-mitigated MSVC libs installation step.
1 parent 926d98b commit a76f620

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,8 +195,8 @@ jobs:
195195
$vswhere = "${env:ProgramFiles(x86)}\Microsoft Visual Studio\Installer\vswhere.exe"
196196
$installPath = & $vswhere -products * -latest -property installationPath
197197
$setupExe = "${env:ProgramFiles(x86)}\Microsoft Visual Studio\Installer\setup.exe"
198-
Start-Process -FilePath $setupExe `
199-
-ArgumentList "modify", "--installPath", "`"$installPath`"", "--add", `
198+
Start-Process -FilePath $setupExe `
199+
-ArgumentList "modify", "--installPath", "`"$installPath`"", "--add", `
200200
"Microsoft.VisualStudio.Component.VC.Tools.x86.x64.Spectre", "--quiet", "--norestart" `
201201
-Wait -PassThru -NoNewWindow
202202

0 commit comments

Comments
 (0)