aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--action.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/action.yml b/action.yml
index 181e709..6fceddb 100644
--- a/action.yml
+++ b/action.yml
@@ -157,8 +157,11 @@ runs:
$version = '8.1.0'
if ($x64) {
+ # If the 32-bit version is installed, we won't detect that.
+ # But it's not that important, and we save a lot of time.
Install-Package $pkg --version $version
} else {
+ # Assuming the 64-bit version is installed.
Remove-Package $pkg
Install-Package $pkg --version $version --x86
}