Skip to content

Commit

Permalink
fix: download URL for linux build of 2023-06-01 version (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
jfcherng authored Jun 2, 2023
1 parent 06d919d commit 9433341
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@ def marksman_binary() -> Optional[str]:
return 'marksman-macos'
if platform_arch == 'windows_x64':
return 'marksman.exe'
if platform_arch == 'linux_arm64':
return 'marksman-linux-arm64'
if platform_arch == 'linux_x64':
return 'marksman-linux'
return 'marksman-linux-x64'
return None


Expand Down

0 comments on commit 9433341

Please sign in to comment.