Skip to content

Commit

Permalink
fix: Installer links
Browse files Browse the repository at this point in the history
  • Loading branch information
ankurdotb committed Feb 22, 2023
1 parent 9400738 commit 49fc248
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions installer/installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 49fc248

Please sign in to comment.