From 8d0123a2f78bf8dcf88bdb5de8bf72cfeb4c5bbe Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Fri, 1 Nov 2024 16:51:42 -0700 Subject: [PATCH] Upgrade pipx installed packages Makes consistent with others --- install-helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-helpers.py b/install-helpers.py index d91e5ac..ce20370 100755 --- a/install-helpers.py +++ b/install-helpers.py @@ -60,7 +60,7 @@ def maybe_pip_install(*args: str, library=False) -> bool: return True if not library and command_exists("pipx"): - return maybe_run("pipx", "install", *user_bins) + return all([maybe_run("pipx", "upgrade", "--install", bin) for bin in user_bins]) elif command_exists("pip3"): return maybe_run( "pip3",