From fa3194afefe30727c5019904bf833c763365205c Mon Sep 17 00:00:00 2001 From: Raboneko <119771935+raboneko@users.noreply.github.com> Date: Sun, 15 Jun 2025 09:57:06 -0700 Subject: [PATCH] fix(hypridle): trim the version correctly (#5453) (#5454) (cherry picked from commit 273ab3f944ecdf607189b30a6356cf0f2931690b) Signed-off-by: madomado Co-authored-by: madomado --- anda/desktops/waylands/hypridle/update.rhai | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/anda/desktops/waylands/hypridle/update.rhai b/anda/desktops/waylands/hypridle/update.rhai index 8e2dce705f..2c18c969ae 100644 --- a/anda/desktops/waylands/hypridle/update.rhai +++ b/anda/desktops/waylands/hypridle/update.rhai @@ -1 +1,3 @@ -rpm.version(gh_rawfile("hyprwm/hypridle", "main", "VERSION")); +let v = gh_rawfile("hyprwm/hypridle", "main", "VERSION"); +v.trim(); +rpm.version(v);