From f3c5d799aadf8fa230ac67a422b01dd085bbc96b Mon Sep 17 00:00:00 2001
From: Egor Tensin <Egor.Tensin@gmail.com>
Date: Fri, 15 Jan 2021 19:28:32 +0300
Subject: restore helpful comments

---
 action.yml | 3 +++
 1 file changed, 3 insertions(+)

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
             }
-- 
cgit v1.2.3