diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-01-07 12:50:41 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-01-07 12:50:41 +0300 |
commit | 973c8f15524b73c6eb6b1eaebdb7b498aae6a396 (patch) | |
tree | c81868fe82a913be9636ca3c6204e972f56881e4 | |
parent | code style (diff) | |
download | setup-gcc-973c8f15524b73c6eb6b1eaebdb7b498aae6a396.tar.gz setup-gcc-973c8f15524b73c6eb6b1eaebdb7b498aae6a396.zip |
fix a stupid typo
-rw-r--r-- | action.yml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -19,7 +19,7 @@ runs: New-Variable linux_host -Value ($os -eq 'Linux') -Option Constant New-Variable cygwin_host -Value ('${{ inputs.cygwin }}' -eq '1') -Option Constant - New-Variable windows_host -Value ($os -eq 'Windows' -and !$cygwin) -Option Constant + New-Variable windows_host -Value ($os -eq 'Windows' -and !$cygwin_host) -Option Constant New-Variable x64 -Value ('${{ inputs.platform }}' -eq 'x64') -Option Constant |