diff --git a/installer/installer.py b/installer/installer.py index f594b975d..037eadfc7 100644 --- a/installer/installer.py +++ b/installer/installer.py @@ -108,8 +108,8 @@ def __init__(self, release_map): def get_release_url(self): try: - os_arch = platform.machine() - os_name = platform.system() + os_arch = platform.machine().lower() + os_name = platform.system().lower() for _url_item in self.assets: _url = _url_item["browser_download_url"] version_without_v_prefix = self.version.replace('v', '' ,1)