From eabf411ac0fe56daedebf3484af76ef353fc7072 Mon Sep 17 00:00:00 2001 From: Radical Date: Sun, 24 Sep 2023 04:43:20 +0200 Subject: [PATCH] Correct a stupid mistake in installer --- scripts/installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/installer.py b/scripts/installer.py index a8cda91..ce1e123 100755 --- a/scripts/installer.py +++ b/scripts/installer.py @@ -239,7 +239,7 @@ break elif platform.system() == "Darwin": - file = f"https://github.com/Radiicall/jellyfin-rpc/releases/latest/download/jellyfin-rpc-{platform.machine()}-linux" + file = f"https://github.com/Radiicall/jellyfin-rpc/releases/latest/download/jellyfin-rpc-{platform.machine()}-darwin" subprocess.run(["curl", "-o", "/usr/local/bin/jellyfin-rpc", "-L", file]) subprocess.run(["chmod", "+x", "/usr/local/bin/jellyfin-rpc"])