From 2da38730ea631f5a54b63039209a7ff3060b1fc6 Mon Sep 17 00:00:00 2001 From: iosmanthus Date: Thu, 12 Sep 2024 17:58:54 +0800 Subject: [PATCH] chore: refine the url template of updateScript Signed-off-by: iosmanthus --- pkgs/by-name/fo/follow/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/fo/follow/package.nix b/pkgs/by-name/fo/follow/package.nix index 162c97ff5c9d25e..84825c3602fb0ae 100644 --- a/pkgs/by-name/fo/follow/package.nix +++ b/pkgs/by-name/fo/follow/package.nix @@ -57,7 +57,7 @@ stdenvNoCC.mkDerivation { ]; text = '' set -o errexit - latestLinux="$(curl -sL https://github.com/RSSNext/Follow/releases/latest/download/latest-linux.yml)" + latestLinux="$(curl -sL https://github.com/${owner}/${repo}/releases/latest/download/latest-linux.yml)" version="$(echo "$latestLinux" | yq -r .version)" update-source-version follow "$version" --source-key=src.src '';