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)