From 050884ba54f5d98c65eabf1e0579121abd0257b8 Mon Sep 17 00:00:00 2001 From: Raboneko <119771935+raboneko@users.noreply.github.com> Date: Fri, 30 May 2025 22:46:28 -0700 Subject: [PATCH] fix(wine-stable): Turn update variable into string (#5152) (#5155) (cherry picked from commit 82c669f234faa93c03529f1c65ce318b7035bb11) Signed-off-by: Gilver Co-authored-by: Gilver --- anda/system/wine/stable/update.rhai | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anda/system/wine/stable/update.rhai b/anda/system/wine/stable/update.rhai index 3c6bfdb03f..c28c5da8e8 100644 --- a/anda/system/wine/stable/update.rhai +++ b/anda/system/wine/stable/update.rhai @@ -5,4 +5,4 @@ for matches in find_all("[\\d.]+\\.0", get("https://dl.winehq.org/wine/source/") } v.dedup(); v.sort(); -rpm.version(v[v.len()-1]); +rpm.version(`${v[v.len()-1]}`);