aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-01-07 13:45:58 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-01-07 13:45:58 +0300
commit1c132b45953067929b0c55d196242b48bf48e3a8 (patch)
treef7080992a7a531725509e45463ec6209f8908d7a
parentREADME: update (diff)
downloadsetup-mingw-1c132b45953067929b0c55d196242b48bf48e3a8.tar.gz
setup-mingw-1c132b45953067929b0c55d196242b48bf48e3a8.zip
fix a stupid typo
-rw-r--r--action.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/action.yml b/action.yml
index 95defd9..9381bb5 100644
--- a/action.yml
+++ b/action.yml
@@ -38,7 +38,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
New-Variable static_workaround -Value ('${{ inputs.static }}' -eq '1') -Option Constant