Fix typo when inlining...

This commit is contained in:
Sam McCall 2020-02-07 18:10:20 +01:00
parent 52be165ee0
commit 014e72068e

View File

@ -86,7 +86,7 @@ jobs:
if: matrix.config.name == 'windows' if: matrix.config.name == 'windows'
shell: powershell shell: powershell
run: | run: |
cmd /c "`"${{ matrix.config.vcvars }})`">NUL && set" | Foreach-Object { cmd /c "`"${{ matrix.config.vcvars }}`">NUL && set" | Foreach-Object {
$name, $value = $_ -split '=', 2 $name, $value = $_ -split '=', 2
if ($value) { echo "::set-env name=$($name)::$($value)" } if ($value) { echo "::set-env name=$($name)::$($value)" }
} }