From 87fa769a5b4aa5b60436a7fb27cceaf809f16172 Mon Sep 17 00:00:00 2001 From: PieyIsAPie Date: Sun, 8 Feb 2026 10:26:50 -0500 Subject: [PATCH] Fix update function --- .SRCINFO | 2 +- yauri | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 89646c92ee412..8d39d27fa229a 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = yauri pkgdesc = yauri, the gayest aur helper ever, all fitting into 1 file. - pkgver = 1.0 + pkgver = 1.1 pkgrel = 1 arch = any license = GPL diff --git a/yauri b/yauri index 262981cad40d0..3b44ada39c70c 100755 --- a/yauri +++ b/yauri @@ -12,7 +12,7 @@ import subprocess import shlex import colorama -VERSION = "1.0" +VERSION = "1.1" AUR_RPC_URL = f"https://aur.archlinux.org/rpc/?v=5" SCRIPTDIR = os.path.dirname(os.path.realpath(__file__)) @@ -194,7 +194,7 @@ def update(): if updates != []: print(cur_lang["INSTALLING_AUR_UPDATES"]) - install(updates) + install(" ".join(updates)) else: print(colorama.Fore.LIGHTGREEN_EX + cur_lang["UP_TO_DATE"] + colorama.Fore.RESET)